diff options
| author | Luis Guilherme Coelho <lgcoelho@disroot.org> | 2026-01-25 13:00:16 -0300 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-03 03:56:55 +0100 |
| commit | e81ea17c5fb679c4408d32d58796745085d9d335 (patch) | |
| tree | 65db447f1c7534156e3ded8ef7b79bba1e90680d /gnu | |
| parent | 7957c22ae57b1eb124bd893dce2475a230e8287e (diff) | |
gnu: Add pipemixer.
* gnu/packages/audio.scm (pipemixer): New variable.
Change-Id: I8370d15c6378d0f51bf9e8ec29aa85424f54860f
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/audio.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index f4045902754..ddc8602f0dd 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -59,6 +59,7 @@ ;;; Copyright © 2025 Antoine Côté <antoine.cote@posteo.net> ;;; Copyright © 2025 Isidor Zeuner <guix@quidecco.pl> ;;; Copyright © 2025 Evgenii Klimov <eugene.dev@lipklim.org> +;;; Copyright © 2026 Luis Guilherme Coelho <lgcoelho@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3282,6 +3283,30 @@ from being able to mix multiple JACK audio streams.") (home-page "https://rdio.space/jackmixer/") (license license:gpl2+))) +(define-public pipemixer + (package + (name "pipemixer") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/heather7283/pipemixer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08ji4lg24flzi6g3yaavfq8hz3kr98q2ripk5m4qk9z172qxbbc9")))) + (build-system meson-build-system) + (native-inputs + (list pkg-config)) + (inputs + (list libinih ncurses pipewire-minimal)) + (synopsis "TUI volume control app for pipewire.") + (description "This is a TUI volume control application for pipewire built with +ncurses. Heavily inspired by pulsemixer and pwvucontrol.") + (home-page "https://github.com/heather7283/pipemixer") + (license license:gpl3))) + (define-public jalv (package (name "jalv") |
