diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-04-04 12:05:10 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-04-04 12:42:28 +0800 |
commit | 34ff76fdd63ef52635d93c545d698f4d340bfa14 (patch) | |
tree | 421705bdf09433a1164e920cce0bbea050527faf /gnu | |
parent | 2fb016b8f1dc0b4b56653e4248e2697af61e5686 (diff) | |
download | gnu-guix-34ff76fdd63ef52635d93c545d698f4d340bfa14.tar gnu-guix-34ff76fdd63ef52635d93c545d698f4d340bfa14.tar.gz |
gnu: gst-plugins-base: Propagate input gstreamer.
* gnu/packages/gstreamer.scm (gst-plugins-base): Move "gstreamer" to
'propagated-inputs'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gstreamer.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 7d0da6add8..79de8a222b 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -158,6 +158,8 @@ This package provides the core library and elements.") (base32 "07ampnfa6p41s0lhia62l9h8bdx3c7vxvdz93pbx64m3wycq3gbp")))) (build-system gnu-build-system) + (propagated-inputs + `(("gstreamer" ,gstreamer))) ; required by gstreamer-plugins-base-1.0.pc (inputs `(("cdparanoia" ,cdparanoia) ("orc" ,orc) @@ -169,8 +171,7 @@ This package provides the core library and elements.") ("zlib" ,zlib) ("libXext" ,libxext) ("libxv" ,libxv) - ("alsa-lib" ,alsa-lib) - ("gstreamer" ,gstreamer))) + ("alsa-lib" ,alsa-lib))) (native-inputs `(("pkg-config" ,pkg-config) ("glib" ,glib "bin") |