mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add wireplumber-minimal.
* gnu/packages/linux.scm (wireplumber-minimal): New variable. Modified-by: Hilton Chain <hako@ultrarare.space> Signed-off-by: Hilton Chain <hako@ultrarare.space> Change-Id: I881c72bd0ad202a1ee3fff324f0d6c6b4bf66dd4
This commit is contained in:
parent
ca81317389
commit
c3b9910198
1 changed files with 13 additions and 0 deletions
|
@ -9451,6 +9451,19 @@ (define-public wireplumber
|
|||
tools for managing PipeWire.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public wireplumber-minimal
|
||||
(let ((base wireplumber))
|
||||
(package
|
||||
(inherit base)
|
||||
(name "wireplumber-minimal")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:configure-flags flags ''())
|
||||
#~(cons "-Delogind=disabled" #$flags))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs base)
|
||||
(delete "elogind"))))))
|
||||
|
||||
(define-public ell
|
||||
(package
|
||||
(name "ell")
|
||||
|
|
Loading…
Reference in a new issue