summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-07-31 18:43:24 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-07 18:33:34 +0100
commit5a93f27f0b875e5181e26fc3537ec1a717c3c11f (patch)
tree0d4e5d8ebbe3407352f0bb4f54cb67cc1e22a2e2
parent9fd47d1c4763e154a58983769d84266464438deb (diff)
gnu: carla: Improve package.
* gnu/packages/audio.scm (carla): Use G-expressions. [arguments]<#:phases>: Refresh phase 'wrap-executables. [inputs]: Remove guile-2.2. Change-Id: I4259674d11881784383ae68f7486ad7ea53f1f98 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/audio.scm14
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index ba58353952..63c13d5813 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -6479,11 +6479,10 @@ as is the case with audio plugins.")
(lambda _
(chmod (string-append #$output "/share/carla/carla") #o555)))
(add-after 'install 'wrap-executables
- (lambda* (#:key inputs #:allow-other-keys)
- (wrap-script (string-append #$output "/bin/carla")
- #:guile (search-input-file inputs "bin/guile")
- `("GUIX_PYTHONPATH" ":" prefix
- (,(getenv "GUIX_PYTHONPATH")))))))))
+ (lambda _
+ (wrap-program (string-append #$output "/bin/carla")
+ `("GUIX_PYTHONPATH" ":" prefix
+ (,(getenv "GUIX_PYTHONPATH")))))))))
(inputs
(list alsa-lib
ffmpeg
@@ -6502,10 +6501,7 @@ as is the case with audio plugins.")
;; (ModuleNotFoundError: No module named 'PyQt5')
python-wrapper
qtbase-5
- zlib
-
- ;; For WRAP-SCRIPT above.
- guile-2.2))
+ zlib))
(native-inputs
(list pkg-config))
(home-page "https://kx.studio/Applications:Carla")