2016-09-25 14:13:17 -07:00
|
|
|
{ fetchurl, stdenv, pkgconfig, pythonPackages
|
|
|
|
, gst-plugins-base
|
2015-09-18 05:24:19 -07:00
|
|
|
, ncurses
|
2014-02-02 07:07:03 -08:00
|
|
|
}:
|
|
|
|
|
2016-09-25 14:13:17 -07:00
|
|
|
let
|
|
|
|
inherit (pythonPackages) python pygobject3;
|
|
|
|
in stdenv.mkDerivation rec {
|
2017-02-26 07:21:52 -08:00
|
|
|
name = "gst-python-1.10.4";
|
2014-02-02 07:07:03 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
2014-10-21 11:28:37 -07:00
|
|
|
"${meta.homepage}/src/gst-python/${name}.tar.xz"
|
|
|
|
"mirror://gentoo/distfiles/${name}.tar.xz"
|
2014-02-02 07:07:03 -08:00
|
|
|
];
|
2017-02-26 12:17:43 -08:00
|
|
|
sha256 = "04l2hvvz9b0f3nyds1k3yfk5di8a91fpr6maj19c11mwp1s82l2r";
|
2014-02-02 07:07:03 -08:00
|
|
|
};
|
|
|
|
|
2014-03-22 07:19:44 -07:00
|
|
|
patches = [ ./different-path-with-pygobject.patch ];
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 05:39:30 -07:00
|
|
|
|
2015-09-18 05:24:19 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
|
|
|
|
# XXX: in the Libs.private field of python3.pc
|
|
|
|
buildInputs = [ ncurses ];
|
2014-02-02 07:07:03 -08:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags --with-pygi-overrides-dir=$out/lib/${python.libPrefix}/site-packages/gi/overrides"
|
|
|
|
'';
|
|
|
|
|
2015-09-18 05:24:19 -07:00
|
|
|
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
|
2014-08-12 13:18:25 -07:00
|
|
|
|
2014-02-02 07:07:03 -08:00
|
|
|
meta = {
|
|
|
|
homepage = http://gstreamer.freedesktop.org;
|
|
|
|
|
|
|
|
description = "Python bindings for GStreamer";
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2014-02-02 07:07:03 -08:00
|
|
|
};
|
|
|
|
}
|