summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/python/default.nix
blob: d20f06635da9cd11e02cf7aa400b8bcfe483e4b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ fetchurl, stdenv, pkgconfig, python, gstreamer
  , gst-plugins-base, pygtk, pygobject3
}:

stdenv.mkDerivation rec {
  name = "gst-python-1.2.0";

  src = fetchurl {
    urls = [
      "${meta.homepage}/src/gst-python/${name}.tar.bz2"
      "mirror://gentoo/distfiles/${name}.tar.bz2"
      ];
    sha256 = "09c6yls8ipbmwimdjr7xi3hvf2xa1xn1pv07855r7wfyzas1xbl1";
  };

  patches = [ ./different-path-with-pygobject.patch ];

  buildInputs =
    [ pkgconfig gst-plugins-base pygtk pygobject3 ]
    ;

  preConfigure = ''
    export configureFlags="$configureFlags --with-pygi-overrides-dir=$out/lib/${python.libPrefix}/site-packages/gi/overrides"
  '';

  propagatedBuildInputs = [ gstreamer python ];
 
  meta = {
    homepage = http://gstreamer.freedesktop.org;

    description = "Python bindings for GStreamer";

    license = stdenv.lib.licenses.lgpl2Plus;
  };
}