forked from mirrors/nixpkgs
gst-python -> pythonPackages.gst-python
This commit is contained in:
parent
60d1c0cfd1
commit
38812685ed
|
@ -13,8 +13,6 @@ rec {
|
|||
|
||||
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
|
||||
|
||||
gst-python = callPackage ./python { inherit gst-plugins-base gstreamer; };
|
||||
|
||||
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
|
||||
|
||||
gst-editing-services = callPackage ./ges { inherit gnonlin; };
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ fetchurl, stdenv, pkgconfig, python, gstreamer
|
||||
, gst-plugins-base, pygtk, pygobject3
|
||||
{ fetchurl, stdenv, pkgconfig, python
|
||||
, gst-plugins-base, pygobject3
|
||||
, ncurses
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -15,15 +16,16 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = [ ./different-path-with-pygobject.patch ];
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig gst-plugins-base pygtk pygobject3 ]
|
||||
;
|
||||
nativeBuildInputs = [ pkgconfig python ];
|
||||
|
||||
# XXX: in the Libs.private field of python3.pc
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
preConfigure = ''
|
||||
export configureFlags="$configureFlags --with-pygi-overrides-dir=$out/lib/${python.libPrefix}/site-packages/gi/overrides"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ gstreamer python ];
|
||||
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://gstreamer.freedesktop.org;
|
||||
|
|
|
@ -3758,6 +3758,10 @@ let
|
|||
propagatedBuildInputs = with self; [ gdata ];
|
||||
};
|
||||
|
||||
gst-python = callPackage ../development/libraries/gstreamer/python {
|
||||
gst-plugins-base = pkgs.gst_all_1.gst-plugins-base;
|
||||
};
|
||||
|
||||
gtimelog = buildPythonPackage rec {
|
||||
name = "gtimelog-${version}";
|
||||
version = "0.9.1";
|
||||
|
|
Loading…
Reference in a new issue