gnu: pamixer: Update to 1.5.
* gnu/packages/pulseaudio.scm (pamixer): Update to 1.5. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
c26b691a48
commit
2524caa25c
1 changed files with 5 additions and 6 deletions
|
@ -431,7 +431,7 @@ install one or more of the following packages alongside pulseaudio-dlna:
|
||||||
(define-public pamixer
|
(define-public pamixer
|
||||||
(package
|
(package
|
||||||
(name "pamixer")
|
(name "pamixer")
|
||||||
(version "1.4")
|
(version "1.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -440,19 +440,18 @@ install one or more of the following packages alongside pulseaudio-dlna:
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1i14550n8paijwwnhksv5izgfqm3s5q2773bdfp6vyqybkll55f7"))))
|
(base32 "1d5arjbsh3q9z693pi2rq553ai9b18iz36ss7q8ff29m0hf62lzd"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; There is no test suite.
|
`(#:tests? #f ; no test suite
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure) ; There's no configure phase.
|
(delete 'configure) ; no configure script
|
||||||
(add-before 'install 'mkdir-bin
|
(add-before 'install 'mkdir-bin
|
||||||
(lambda _
|
(lambda _
|
||||||
(mkdir-p (string-append (assoc-ref %outputs "out") "/bin"))
|
(mkdir-p (string-append (assoc-ref %outputs "out") "/bin")))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("pulseaudio" ,pulseaudio)))
|
("pulseaudio" ,pulseaudio)))
|
||||||
|
|
Reference in a new issue