diff options
author | Leo Famulari <leo@famulari.name> | 2018-10-19 16:31:12 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-10-23 00:18:17 -0400 |
commit | 844b3272dab2165fd87f26647cac5e53a080c0ce (patch) | |
tree | 16370f9305c012cce99a86ac58e06dc96854ca08 /gnu/packages/xiph.scm | |
parent | ce08d54c35e66292955a114b694bbf52ade10e23 (diff) | |
download | patches-844b3272dab2165fd87f26647cac5e53a080c0ce.tar patches-844b3272dab2165fd87f26647cac5e53a080c0ce.tar.gz |
gnu: opusfile: Propagate dependencies required in pkg-config.
* gnu/packages/xiph.scm (opusfile)[inputs]: Move libogg and openssl to
propagated-inputs.
Diffstat (limited to 'gnu/packages/xiph.scm')
-rw-r--r-- | gnu/packages/xiph.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index 523f82dc97..f40522730b 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -398,13 +398,13 @@ decoding .opus files.") (base32 "1gq3aszzl5glgbajw5p1f5a1kdyf23w5vjdmwwrk246syin9pkkl")))) (build-system gnu-build-system) + ;; Required by opusfile.pc and opusurl.pc. (propagated-inputs - `(("opus" ,opus))) + `(("libogg" ,libogg) + ("openssl" ,openssl) + ("opus" ,opus))) (native-inputs `(("pkg-config" ,pkg-config))) - (inputs - `(("libogg" ,libogg) - ("openssl" ,openssl))) (synopsis "Versatile audio codec") (description "The opusfile library provides seeking, decode, and playback of Opus |