diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-04-10 18:45:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-04-10 18:45:40 +0200 |
commit | f1d81568b5d837da4d5099e38114fd4adf25ed41 (patch) | |
tree | 1906da107174e16a750b491712d12083161c6bea /gnu/packages/audio.scm | |
parent | d4d3df82bcea1bb78dbbf07f33a42cfc1c50dd71 (diff) | |
download | guix-f1d81568b5d837da4d5099e38114fd4adf25ed41.tar guix-f1d81568b5d837da4d5099e38114fd4adf25ed41.tar.gz |
gnu: jalv: Update to 1.6.0.
* gnu/packages/audio.scm (jalv): Update to 1.6.0.
[inputs]: Replace "gtk+-2" with "gtk+" and "gtkmm-2" with "gtkmm".
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 861179bca3..f4421df18a 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1402,14 +1402,14 @@ synchronous execution of all clients, and low latency operation.") (define-public jalv (package (name "jalv") - (version "1.4.6") + (version "1.6.0") (source (origin (method url-fetch) (uri (string-append "http://download.drobilla.net/jalv-" version ".tar.bz2")) (sha256 (base32 - "1f1hcq74n3ziw8bk97mn5a1vgw028dxikv3fchaxd430pbbhqgl9")))) + "1x2wpzzx2cgvz3dgdcgsj8dr0w3zsasy62mvl199bsdj5fbjaili")))) (build-system waf-build-system) (arguments `(#:tests? #f ; no check target @@ -1425,8 +1425,8 @@ synchronous execution of all clients, and low latency operation.") `(("lv2" ,lv2) ("lilv" ,lilv) ("suil" ,suil) - ("gtk" ,gtk+-2) - ("gtkmm" ,gtkmm-2) + ("gtk" ,gtk+) + ("gtkmm" ,gtkmm) ("jack" ,jack-1))) (native-inputs `(("pkg-config" ,pkg-config))) |