diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-29 21:41:18 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-30 18:44:51 +0200 |
commit | 471884ed112e072b59ea4cf360b2827a684e700e (patch) | |
tree | 286854a778e5116465bbe2a8c82741b6d4b8566e | |
parent | 0f377aad75314df6c6296f4172801519315d81cd (diff) | |
download | guix-471884ed112e072b59ea4cf360b2827a684e700e.tar.gz |
gnu: lilv: Propagate LV2.
* gnu/packages/audio.scm (lilv)[propagated-inputs]: Add LV2. [inputs]: Remove.
-rw-r--r-- | gnu/packages/audio.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 5468742c81..e731569ae1 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1749,11 +1749,10 @@ included are the command line utilities @code{send_osc} and @code{dump_osc}.") #t))))) ;; Required by lilv-0.pc. (propagated-inputs - `(("serd" ,serd) + `(("lv2" ,lv2) + ("serd" ,serd) ("sord" ,sord) ("sratom" ,sratom))) - (inputs - `(("lv2" ,lv2))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "https://drobilla.net/software/lilv/") |