mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: k3b: Remove references to '%outputs' and '%build-inputs'.
* gnu/packages/kde-multimedia.scm (k3b)[arguments]: Remove references to '%build-inputs' and '%outputs'.
This commit is contained in:
parent
c108602c33
commit
71e47839ba
1 changed files with 6 additions and 6 deletions
|
@ -308,11 +308,11 @@ (define-public k3b
|
|||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-absolute-library-paths
|
||||
(lambda _
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Set absolute paths for dlopened libraries. We can’t use k3b’s
|
||||
;; runpath as they are loaded by the Qt library.
|
||||
(let ((libcdio-paranoia (assoc-ref %build-inputs "libcdio-paranoia"))
|
||||
(libdvdcss (assoc-ref %build-inputs "libdvdcss")))
|
||||
(let ((libcdio-paranoia (assoc-ref inputs "libcdio-paranoia"))
|
||||
(libdvdcss (assoc-ref inputs "libdvdcss")))
|
||||
(substitute* "libk3b/tools/k3bcdparanoialib.cpp"
|
||||
(("\"(cdio_cdda|cdio_paranoia)\"" _ library)
|
||||
(string-append "\"" libcdio-paranoia "/lib/" library "\"")))
|
||||
|
@ -321,12 +321,12 @@ (define-public k3b
|
|||
(string-append "\"" libdvdcss "/lib/" library "\""))))
|
||||
#t))
|
||||
(add-after 'qt-wrap 'wrap-path
|
||||
(lambda _
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
;; Set paths to backend programs.
|
||||
(wrap-program (string-append (assoc-ref %outputs "out") "/bin/k3b")
|
||||
(wrap-program (string-append (assoc-ref outputs "out") "/bin/k3b")
|
||||
`("PATH" ":" prefix
|
||||
,(map (lambda (input)
|
||||
(string-append (assoc-ref %build-inputs input) "/bin"))
|
||||
(string-append (assoc-ref inputs input) "/bin"))
|
||||
'("cdrdao" "dvd+rw-tools" "libburn" "sox"))))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue