[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/27: gnu: Add wmamixer.
From: |
guix-commits |
Subject: |
27/27: gnu: Add wmamixer. |
Date: |
Sun, 4 Sep 2022 17:20:34 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit aae98c297214f87eb45302863adb021078c41a6f
Author: Jessica Tallon <tsyesika@tsyesika.se>
AuthorDate: Fri Aug 26 22:06:20 2022 +0200
gnu: Add wmamixer.
* gnu/packages/gnustep.scm (wmamixer): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/gnustep.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index ba7060504c..a6f9b0e2fb 100644
--- a/gnu/packages/gnustep.scm
+++ b/gnu/packages/gnustep.scm
@@ -36,6 +36,7 @@
#:use-module (gnu packages gcc)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages llvm)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages autotools)
@@ -335,3 +336,37 @@ entering the dock a burning spot replaces the cursor, and
after two seconds
symbols to represent the current monitor are \"burnt\" onscreen. The flame
colour can also be changed.")
(license license:gpl2+)))
+
+(define-public wmamixer
+ (package
+ (name "wmamixer")
+ (version "1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gryf/wmamixer")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "04vv4kr4mj1nwri6zqgdg4yzbbmmng73qd4h0azliril75m7sldf"))))
+ (inputs (list libx11 libxpm libxext alsa-lib))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ (install-file "wmamixer" bin)))))))
+ (synopsis "Window maker applet to display the current volume")
+ (description
+ "wmamixer is an applet for window maker which displays the
+current volume level both numerically and visiaully with a volume bar. It
+includes the ability to toggle through different outputs to show their
+respective volume level.")
+ (home-page "https://github.com/gryf/wmamixer")
+ (license license:gpl2+)))
+
- 09/27: etc: teams: Add racket team., (continued)
- 09/27: etc: teams: Add racket team., guix-commits, 2022/09/04
- 10/27: etc: teams: Add entry for Philip McGrath., guix-commits, 2022/09/04
- 15/27: gnu: chez-scheme: Make bootfiles regular inputs., guix-commits, 2022/09/04
- 17/27: gnu: racket: Support cross-compiling the VM packages., guix-commits, 2022/09/04
- 18/27: gnu: chez-scheme-for-racket: Support all systems., guix-commits, 2022/09/04
- 19/27: gnu: racket-vm-bc: Add workaround for ppc64le., guix-commits, 2022/09/04
- 22/27: gnu: hashcat: Unbundle everything but LZMA-SDK., guix-commits, 2022/09/04
- 24/27: gnu: hashcat: Fix cross-compilation., guix-commits, 2022/09/04
- 23/27: gnu: hashcat: Rewrite with G-exps., guix-commits, 2022/09/04
- 26/27: gnu: texlive-caption: Fix description., guix-commits, 2022/09/04
- 27/27: gnu: Add wmamixer.,
guix-commits <=
- 08/27: gnu: stex: Fix read-only gifs and math directories., guix-commits, 2022/09/04
- 11/27: gnu: racket: Adjust patch for "/bin/sh" in rktio., guix-commits, 2022/09/04