mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add pipewire-0.3.
* gnu/packages/linux.scm (pipewire-0.3): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
73cb3e103f
commit
d888a9c9f9
1 changed files with 30 additions and 0 deletions
|
@ -47,6 +47,7 @@
|
|||
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
|
||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||
;;; Copyright © 2020 Anders Thuné <asse.97@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -125,6 +126,7 @@ (define-module (gnu packages linux)
|
|||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages valgrind)
|
||||
#:use-module (gnu packages video)
|
||||
#:use-module (gnu packages vulkan)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xiph)
|
||||
#:use-module (gnu packages xml)
|
||||
|
@ -7115,6 +7117,34 @@ (define-public pipewire
|
|||
of Linux application development.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public pipewire-0.3
|
||||
(package
|
||||
(inherit pipewire)
|
||||
(name "pipewire")
|
||||
(version "0.3.6")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/PipeWire/pipewire")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0g149vyaigf4gzm764fcgxxci9niw19z0af9afs4diwq5xzr1qd3"))))
|
||||
(arguments
|
||||
'(#:configure-flags '("-Dsystemd=false")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Skip shrink-runpath, otherwise validate-runpath fails
|
||||
(delete 'shrink-runpath))))
|
||||
(inputs
|
||||
(append (package-inputs pipewire)
|
||||
`(("bluez" ,bluez)
|
||||
("jack" ,jack-2)
|
||||
("pulseaudio" ,pulseaudio)
|
||||
("vulkan-loader" ,vulkan-loader)
|
||||
("vulkan-headers" ,vulkan-headers))))))
|
||||
|
||||
(define-public ell
|
||||
(package
|
||||
(name "ell")
|
||||
|
|
Loading…
Reference in a new issue