guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5a93f27f0b875e5181e26fc3537ec1a717c3c11f
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jul 31 18:43:24 2025 +0200

    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 <[email protected]>
---
 gnu/packages/audio.scm | 14 +++++---------
 1 file 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";)

Reply via email to