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 @@ providing convenience for writing the daemon's modules as well as external
|
||||||
tools for managing PipeWire.")
|
tools for managing PipeWire.")
|
||||||
(license license:expat)))
|
(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
|
(define-public ell
|
||||||
(package
|
(package
|
||||||
(name "ell")
|
(name "ell")
|
||||||
|
|
Reference in a new issue