diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-06-14 10:04:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-06-15 08:07:37 +0200 |
commit | 2e189eb89fd2d7c63ff6f364c771fd4751f86a18 (patch) | |
tree | 1b44dd6b655b41738b0a274ce72b0fcca205ebf7 | |
parent | a0d385b0527715fce7efcc5487b13bb6a5ed1af4 (diff) | |
download | guix-2e189eb89fd2d7c63ff6f364c771fd4751f86a18.tar guix-2e189eb89fd2d7c63ff6f364c771fd4751f86a18.tar.gz |
gnu: lv2: Update to 1.12.0.
* gnu/packages/audio.scm (lv2): Update to 1.12.0.
-rw-r--r-- | gnu/packages/audio.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 3b2d4e1022..1d6277c125 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -836,7 +836,7 @@ significantly faster and have minimal dependencies.") (define-public lv2 (package (name "lv2") - (version "1.10.0") + (version "1.12.0") (source (origin (method url-fetch) (uri (string-append "http://lv2plug.in/spec/lv2-" @@ -844,11 +844,11 @@ significantly faster and have minimal dependencies.") ".tar.bz2")) (sha256 (base32 - "1md41x9snrp4mcfyli7lyfpvcfa78nfy6xkdy84kppnl8m5qw378")))) + "1saq0vwqy5zjdkgc5ahs8kcabxfmff2mmg68fiqrkv8hiw9m6jks")))) (build-system waf-build-system) (arguments `(#:tests? #f ; no check target - #:configure-flags '("--lv2-system"))) + #:configure-flags '("--no-plugins"))) (inputs ;; Leaving off cairo and gtk+-2.0 which are needed for example plugins `(("libsndfile" ,libsndfile))) |