diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-20 17:16:58 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-20 17:21:33 +0200 |
commit | c1ca2716f821fc1907f706723e887e1bc6e19b82 (patch) | |
tree | 60003879d5820f66bc5e59522fdd8d6356f21279 /gnu | |
parent | 214fb9fbfd4d05f1bae79c0619ea02a3bc742528 (diff) | |
download | guix-c1ca2716f821fc1907f706723e887e1bc6e19b82.tar.gz guix-c1ca2716f821fc1907f706723e887e1bc6e19b82.zip |
gnu: dragonfly-reverb: Update to 3.2.5.
* gnu/packages/music.scm (dragonfly-reverb): Update to 3.2.5.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index f013ad6d3e..7a466eaaf0 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6483,7 +6483,7 @@ plugin support, JACK support and chord assistance.") (define-public dragonfly-reverb (package (name "dragonfly-reverb") - (version "3.2.1") + (version "3.2.5") (source (origin (method git-fetch) @@ -6495,7 +6495,7 @@ plugin support, JACK support and chord assistance.") (recursive? #t))) (file-name (git-file-name name version)) (sha256 - (base32 "0vfm2510shah67k87mdyar4wr4vqwii59y9lqfhwm6blxparkrqa")))) + (base32 "14kia9wjs0nqfx4psnr3vf4x6hihkf80gb0mjzmdnnnk4cnrdydm")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no check target @@ -6523,8 +6523,7 @@ plugin support, JACK support and chord assistance.") (and (equal? (dirname name) "bin") (not (string-suffix? ".so" name)) - (not (string-suffix? ".lv2" name)))))) - #t)))))) + (not (string-suffix? ".lv2" name)))))))))))) (native-inputs `(("pkg-config" ,pkg-config))) (inputs |