Maya Tomasek wrote 2 years ago
(address . guix-patches@gnu.org)(name . Antero Mejr)(address . antero@mailbox.org)
From: Antero Mejr <antero@mailbox.org>
* gnu/packages/audio.scm (carla): Update to 2.6.0 pre-release.
---
gnu/packages/audio.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
Toggle diff (40 lines)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index e443934e51..3ce9c0888d 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -5335,19 +5335,21 @@ (define-public redkite
(license license:gpl3+)))
(define-public carla
+ (let ((commit "aa400535b31c67f4b6c1b28e6e20e4d4f82111a3")
+ (revision "0"))
(package
(name "carla")
- (version "2.4.1")
+ (version (git-version "2.6.0" revision commit))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/falkTX/Carla")
- (commit (string-append "v" version))))
+ (commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32 "01ngkmfcxyg1bb4qmfvlkkjbx4lx62akxqhizl8zmqnhfcy4p9bx"))))
+ (base32 "0cnj2sgr60f5h6wdfmihc214wf3n74686sipl3iyzmylqrcyhbjn"))))
(build-system gnu-build-system)
(arguments
(list #:tests? #f ; no "check" target
@@ -5400,7 +5402,7 @@ (define-public carla
over OSC. Carla currently supports LADSPA (including LRDF), DSSI, LV2, VST2,
and VST3 plugin formats, plus SF2 and SFZ file support. It uses JACK as the
default and preferred audio driver but also supports native drivers like ALSA.")
- (license license:gpl2+)))
+ (license license:gpl2+))))
(define-public ecasound
(package
--
2.39.1