summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Devos <maximedevos@telenet.be>2021-05-31 19:41:22 +0200
committerLudovic Courtès <ludo@gnu.org>2021-06-04 22:34:32 +0200
commit0a843e36434f3e99bed7b591f22b7b04406e4890 (patch)
tree94c4365e1d5e13df60c676b9e7dd0ac8f2794dd7
parenta62d17dc05f60f242f577ab97db20380f701432d (diff)
gnu: carla: Set #:guile argument of 'wrap-script'.
* gnu/packages/audio.scm (carla)[arguments]<#:phases>{wrap-executables}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/audio.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index f677d46a7fe..930c111d5e5 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -4711,9 +4711,10 @@ as is the case with audio plugins.")
4711 (chmod (string-append out "/share/carla/carla") #o555) 4711 (chmod (string-append out "/share/carla/carla") #o555)
4712 #t))) 4712 #t)))
4713 (add-after 'install 'wrap-executables 4713 (add-after 'install 'wrap-executables
4714 (lambda* (#:key outputs #:allow-other-keys) 4714 (lambda* (#:key inputs outputs #:allow-other-keys)
4715 (let ((out (assoc-ref outputs "out"))) 4715 (let ((out (assoc-ref outputs "out")))
4716 (wrap-script (string-append out "/bin/carla") 4716 (wrap-script (string-append out "/bin/carla")
4717 #:guile (search-input-file inputs "bin/guile")
4717 `("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))) 4718 `("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH"))))
4718 #t)))))) 4719 #t))))))
4719 (inputs 4720 (inputs