mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: pamixer: Update to 1.6.
* gnu/packages/pulseaudio.scm (pamixer): Update to 1.6. [build-system]: Switch to Meson. [arguments]: Remove field. [native-inputs]: Add pkg-config. [inputs]: Remove boost; add cxxopts.
This commit is contained in:
parent
ca4d834c2f
commit
15d55744fd
1 changed files with 7 additions and 15 deletions
|
@ -48,8 +48,8 @@ (define-module (gnu packages pulseaudio)
|
|||
#:use-module (gnu packages audio)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages avahi)
|
||||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages cpp)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
|
@ -370,7 +370,7 @@ (define-public pulsemixer
|
|||
(define-public pamixer
|
||||
(package
|
||||
(name "pamixer")
|
||||
(version "1.5")
|
||||
(version "1.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -379,20 +379,12 @@ (define-public pamixer
|
|||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1d5arjbsh3q9z693pi2rq553ai9b18iz36ss7q8ff29m0hf62lzd"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no test suite
|
||||
#:make-flags
|
||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure) ; no configure script
|
||||
(add-before 'install 'mkdir-bin
|
||||
(lambda _
|
||||
(mkdir-p (string-append (assoc-ref %outputs "out") "/bin")))))))
|
||||
(base32 "0d0fcqv9fri1y2701lasscgmvljxzpyg95vy90b3d2ccdnqn3d1d"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
(list boost pulseaudio))
|
||||
(list cxxopts pulseaudio))
|
||||
(home-page "https://github.com/cdemoulins/pamixer")
|
||||
(synopsis "PulseAudio command line mixer")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue