2017-08-13 12:42:30 -07:00
|
|
|
{ fetchurl, stdenv, pkgconfig, python, pygobject3
|
|
|
|
, gst-plugins-base, ncurses
|
2014-02-02 07:07:03 -08:00
|
|
|
}:
|
|
|
|
|
2017-08-13 12:42:30 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gst-python";
|
2017-12-07 05:03:36 -08:00
|
|
|
version = "1.12.3";
|
2017-08-13 12:42:30 -07:00
|
|
|
name = "${pname}-${version}";
|
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-12-11 01:21:20 -08:00
|
|
|
sha256 = "19rb06x2m7103zwfm0plxx95gb8bp01ng04h4q9k6ii9q7g2kxf3";
|
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
|
|
|
|
2017-09-08 12:03:20 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--with-pygi-overrides-dir=$(out)/${python.sitePackages}/gi/overrides"
|
|
|
|
];
|
2014-02-02 07:07:03 -08:00
|
|
|
|
2015-09-18 05:24:19 -07:00
|
|
|
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
|
2014-08-12 13:18:25 -07:00
|
|
|
|
2017-08-13 12:42:30 -07:00
|
|
|
# Needed for python.buildEnv
|
|
|
|
passthru.pythonPath = [];
|
|
|
|
|
2014-02-02 07:07:03 -08:00
|
|
|
meta = {
|
2017-09-16 12:28:31 -07:00
|
|
|
homepage = https://gstreamer.freedesktop.org;
|
2014-02-02 07:07:03 -08:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|