nixpkgs/pkgs/development/libraries/gstreamer/python/default.nix

40 lines
947 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, python
, gst-plugins-base, pygobject3
, ncurses
}:
stdenv.mkDerivation rec {
name = "gst-python-1.8.1";
src = fetchurl {
urls = [
"${meta.homepage}/src/gst-python/${name}.tar.xz"
"mirror://gentoo/distfiles/${name}.tar.xz"
];
sha256 = "160ah5rpy4n8p1mhbf545rcv7rbq0i17xl7q5hmivf4w5yvvz8vn";
};
2014-03-22 15:19:44 +01:00
patches = [ ./different-path-with-pygobject.patch ];
2016-04-24 14:39:30 +02:00
outputs = [ "dev" "out" ];
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 = [ gst-plugins-base pygobject3 ];
2014-08-12 22:18:25 +02:00
meta = {
homepage = http://gstreamer.freedesktop.org;
description = "Python bindings for GStreamer";
license = stdenv.lib.licenses.lgpl2Plus;
};
}