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