gnu: abcde: Add flac support.
* gnu/packages/cdrom.scm (abcde)[inputs]: Add flac. [arguments]: Wrap the bunary with flac's bin dir also.
This commit is contained in:
parent
7c247809ef
commit
0d1baed223
1 changed files with 3 additions and 0 deletions
|
@ -328,12 +328,14 @@ from an audio CD.")
|
||||||
(parano (assoc-ref inputs "cdparanoia"))
|
(parano (assoc-ref inputs "cdparanoia"))
|
||||||
(which (assoc-ref inputs "which"))
|
(which (assoc-ref inputs "which"))
|
||||||
(discid (assoc-ref inputs "cd-discid"))
|
(discid (assoc-ref inputs "cd-discid"))
|
||||||
|
(flac (assoc-ref inputs "flac"))
|
||||||
(out (assoc-ref outputs "out")))
|
(out (assoc-ref outputs "out")))
|
||||||
(define (wrap file)
|
(define (wrap file)
|
||||||
(wrap-program file
|
(wrap-program file
|
||||||
`("PATH" ":" prefix
|
`("PATH" ":" prefix
|
||||||
(,(string-append out "/bin:"
|
(,(string-append out "/bin:"
|
||||||
wget "/bin:"
|
wget "/bin:"
|
||||||
|
flac "/bin:"
|
||||||
which "/bin:"
|
which "/bin:"
|
||||||
vorbis "/bin:"
|
vorbis "/bin:"
|
||||||
discid "/bin:"
|
discid "/bin:"
|
||||||
|
@ -349,6 +351,7 @@ from an audio CD.")
|
||||||
("cdparanoia" ,cdparanoia)
|
("cdparanoia" ,cdparanoia)
|
||||||
("cd-discid" ,cd-discid)
|
("cd-discid" ,cd-discid)
|
||||||
("vorbis-tools" ,vorbis-tools)
|
("vorbis-tools" ,vorbis-tools)
|
||||||
|
("flac" ,flac)
|
||||||
|
|
||||||
;; A couple of Python and Perl scripts are included.
|
;; A couple of Python and Perl scripts are included.
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
|
|
Reference in a new issue