[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: avldrums-lv2: Update to 0.4.2.
From: |
guix-commits |
Subject: |
01/04: gnu: avldrums-lv2: Update to 0.4.2. |
Date: |
Sat, 4 Sep 2021 19:05:50 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 4339af579e6eec0b18d1f78cc0877ba375ce5841
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 5 00:31:11 2021 +0200
gnu: avldrums-lv2: Update to 0.4.2.
* gnu/packages/music.scm (avldrums-lv2): Update to 0.4.2.
[arguments]: Don't return #t from phases.
---
gnu/packages/music.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index a8fe84e..c1f0386 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6246,7 +6246,7 @@ Soul Force), MVerb, Nekobi, and ProM.")
(define-public avldrums-lv2
(package
(name "avldrums-lv2")
- (version "0.4.1")
+ (version "0.4.2")
(source
(origin
(method git-fetch)
@@ -6258,7 +6258,7 @@ Soul Force), MVerb, Nekobi, and ProM.")
(recursive? #t)))
(file-name (git-file-name name version))
(sha256
- (base32 "1vwdp3d8qzd493qa99ddya7iql67bbfxmbcl8hk96lxif2lhmyws"))))
+ (base32 "14gka5g7va30gm1hn0cas4vvb8s764rfvzcxm67ww86hf54cpnig"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no "check" target
@@ -6266,10 +6266,10 @@ Soul Force), MVerb, Nekobi, and ProM.")
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:phases
(modify-phases %standard-phases
+ (delete 'configure) ; no configure script
(add-before 'build 'set-CC-variable
(lambda _
- (setenv "CC" "gcc") #t))
- (delete 'configure))))
+ (setenv "CC" "gcc"))))))
(inputs
`(("cairo" ,cairo)
("dssi" ,dssi)