mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gimp-next: Use output references.
* gnu/packages/gimp.scm (gimp-next)[arguments]: Replace ASSOC-REF with direct Gexp output references. Change-Id: I876c7fc30936f81cd57945b0dd1fd3386839df3d
This commit is contained in:
parent
e019ea22b4
commit
96ac18dfeb
1 changed files with 4 additions and 6 deletions
|
@ -451,12 +451,10 @@ that is extensible via a plugin system.")
|
||||||
(substitute* "app/gimp-version.c"
|
(substitute* "app/gimp-version.c"
|
||||||
(("CC_VERSION") (string-append "\"" cc-version "\""))))))
|
(("CC_VERSION") (string-append "\"" cc-version "\""))))))
|
||||||
(add-after 'install 'move-doc
|
(add-after 'install 'move-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(mkdir-p (string-append #$output:doc "/share"))
|
||||||
(doc (assoc-ref outputs "doc")))
|
(rename-file (string-append #$output "/share/doc")
|
||||||
(mkdir-p (string-append doc "/share"))
|
(string-append #$output:doc "/share/doc")))))))
|
||||||
(rename-file (string-append out "/share/doc")
|
|
||||||
(string-append doc "/share/doc"))))))))
|
|
||||||
(inputs (modify-inputs (package-inputs gimp)
|
(inputs (modify-inputs (package-inputs gimp)
|
||||||
(replace "gtk+" gtk+)
|
(replace "gtk+" gtk+)
|
||||||
(prepend libxmu libxt)
|
(prepend libxmu libxt)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue