7a6185d9a1
Fixes CVE-2016-9445, CVE-2016-9446, CVE-2016-9447.
42 lines
997 B
Nix
42 lines
997 B
Nix
{ fetchurl, stdenv, pkgconfig, pythonPackages
|
|
, gst-plugins-base
|
|
, ncurses
|
|
}:
|
|
|
|
let
|
|
inherit (pythonPackages) python pygobject3;
|
|
in stdenv.mkDerivation rec {
|
|
name = "gst-python-1.10.1";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"${meta.homepage}/src/gst-python/${name}.tar.xz"
|
|
"mirror://gentoo/distfiles/${name}.tar.xz"
|
|
];
|
|
sha256 = "04xhh0z0c0s6aq7kvmfs4r6yl1pjnqz0krp05pbjy62ayx5b61ak";
|
|
};
|
|
|
|
patches = [ ./different-path-with-pygobject.patch ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
homepage = http://gstreamer.freedesktop.org;
|
|
|
|
description = "Python bindings for GStreamer";
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
};
|
|
}
|