diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-03-18 07:19:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-03-18 07:20:38 +0100 |
commit | 96ac18dfeb1a61bb57f3e26c9d62af3b5a231eef (patch) | |
tree | 0d586d44ee188d61c3315ea1a202e44a27db381b /gnu/packages/gimp.scm | |
parent | e019ea22b4eb8366c556fcd0a8d855225070aab4 (diff) |
gnu: gimp-next: Use output references.
* gnu/packages/gimp.scm (gimp-next)[arguments]: Replace ASSOC-REF with direct
Gexp output references.
Change-Id: I876c7fc30936f81cd57945b0dd1fd3386839df3d
Diffstat (limited to 'gnu/packages/gimp.scm')
-rw-r--r-- | gnu/packages/gimp.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index cdac2cb79b..6e4916600f 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -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) |