Reduce dependency footprint of gst-python.
The gst-python package actually is perfectly happy with pygobject and does not require pygtk.
This commit is contained in:
parent
b102f09c00
commit
beae0d93ff
|
@ -1,5 +1,5 @@
|
|||
{ fetchurl, stdenv, pkgconfig, python, gstreamer
|
||||
, gst_plugins_base, pygtk
|
||||
, gst_plugins_base, pygobject
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig gst_plugins_base pygtk ]
|
||||
[ pkgconfig gst_plugins_base pygobject ]
|
||||
;
|
||||
|
||||
propagatedBuildInputs = [ gstreamer python ];
|
||||
|
||||
|
||||
meta = {
|
||||
homepage = http://gstreamer.freedesktop.org;
|
||||
|
||||
|
|
Loading…
Reference in New Issue