diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-02-20 21:56:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-02-20 22:10:14 +0100 |
commit | ff7df27d4bdcc31835427713bfae62adc3a592a1 (patch) | |
tree | 86753a846e3d6cbd20676eedae8d4cc3bd3039a1 /gnu/packages | |
parent | 85652f599a7a9574a26aefc4bdd36f6b6710a7c0 (diff) | |
download | guix-ff7df27d4bdcc31835427713bfae62adc3a592a1.tar guix-ff7df27d4bdcc31835427713bfae62adc3a592a1.tar.gz |
gnu: lilv: propagate inputs serd, sord and sratom.
* gnu/packages/audio.scm (lilv): move serd, sord and sratom to propagated
inputs.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 6e7ebf17c0..f6fb236a0a 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -372,11 +372,13 @@ implementation of the Open Sound Control (OSC) protocol.") "0aj2plkx56iar8vzjbq2l7hi7sp0ml99m0h44rgwai2x4vqkk2j2")))) (build-system waf-build-system) (arguments `(#:tests? #f)) ; no check target - (inputs - `(("lv2" ,lv2) - ("serd" ,serd) + ;; required by lilv-0.pc + (propagated-inputs + `(("serd" ,serd) ("sord" ,sord) ("sratom" ,sratom))) + (inputs + `(("lv2" ,lv2))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "http://drobilla.net/software/lilv/") |