GNU bug report logs - #72749
[PATCH] gnu: Add ncpamixer.

Previous Next

Package: guix-patches;

Reported by: Sisiutl <sisiutl <at> egregore.fun>

Date: Wed, 21 Aug 2024 16:18:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 72749 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#72749; Package guix-patches. (Wed, 21 Aug 2024 16:18:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sisiutl <sisiutl <at> egregore.fun>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 21 Aug 2024 16:18:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sisiutl <sisiutl <at> egregore.fun>
To: guix-patches <at> gnu.org
Cc: Sisiutl <sisiutl <at> egregore.fun>
Subject: [PATCH] gnu: Add ncpamixer.
Date: Wed, 21 Aug 2024 18:16:21 +0200
* gnu/packages/pulseaudio.scm (ncpamixer): New variable.
* gnu/packages/pulseaudio.scm: Add (gnu packages ncurses) module.

Change-Id: Ie55a965f37bdbbfe32ae0397af02be478d155ae1
---
 gnu/packages/pulseaudio.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm
index dd0d3985c0..cf56de6a0c 100644
--- a/gnu/packages/pulseaudio.scm
+++ b/gnu/packages/pulseaudio.scm
@@ -64,6 +64,7 @@ (define-module (gnu packages pulseaudio)
   #:use-module (gnu packages web)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages m4)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages protobuf)
   #:use-module (gnu packages python)
@@ -382,6 +383,34 @@ (define-public pamixer
 volume levels of the sinks (get, set, decrease, increase, toggle mute, etc).")
     (license l:gpl3+)))
 
+(define-public ncpamixer
+  (package
+    (name "ncpamixer")
+    (version "1.3.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/fulhax/ncpamixer/")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ix4cja3yka8ah5s1ygd0ghf53jllphnjxjnkivvx72jii4b778q"))))
+    (build-system cmake-build-system)
+    (inputs (list pulseaudio ncurses))
+    (arguments
+     (list
+      #:configure-flags #~'("-DBUILD_MANPAGES=OFF")
+      #:tests? #f
+      #:phases #~(modify-phases %standard-phases
+                   (add-before 'configure 'chdir-to-src
+                     (lambda _
+                       (chdir "src"))))))
+    (home-page "https://github.com/fulhax/ncpamixer")
+    (synopsis "Ncurses PulseAudio Mixer")
+    (description "An ncurses mixer for PulseAudio inspired by pavucontrol.")
+    (license l:expat)))
+
 (define-public pasystray
   (package
     (name "pasystray")

base-commit: 7ed52500c945f5cba8a93dd0df7b89f9bca6b6e7
prerequisite-patch-id: f4453f86b4eee4c3be3bd716167658abf1428aee
-- 
2.45.2





This bug report was last modified 301 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.