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"
|
||||
(("CC_VERSION") (string-append "\"" cc-version "\""))))))
|
||||
(add-after 'install 'move-doc
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(doc (assoc-ref outputs "doc")))
|
||||
(mkdir-p (string-append doc "/share"))
|
||||
(rename-file (string-append out "/share/doc")
|
||||
(string-append doc "/share/doc"))))))))
|
||||
(lambda _
|
||||
(mkdir-p (string-append #$output:doc "/share"))
|
||||
(rename-file (string-append #$output "/share/doc")
|
||||
(string-append #$output:doc "/share/doc")))))))
|
||||
(inputs (modify-inputs (package-inputs gimp)
|
||||
(replace "gtk+" gtk+)
|
||||
(prepend libxmu libxt)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue