summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/bindings/python-rsvg/default.nix
blob: e06ffca8b90dea59284326a674f7e0eed8a18349 (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
{ stdenv, fetchurl, gnome2, librsvg, pkgconfig, pygtk, python, gtk }:

stdenv.mkDerivation rec {
  ver_maj = "2.32";
  ver_min = "0";
  version = "${ver_maj}.${ver_min}";
  name = "python-rsvg-${version}";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-python-desktop/${ver_maj}/gnome-python-desktop-${version}.tar.bz2";
    sha256 = "1s8f9rns9v7qlwjv9qh9lr8crp88dpzfm45hj47zc3ivpy0dbnq9";
  };

  configurePhase = ''
    sed -e "s@{PYTHONDIR}/gtk-2.0@{PYTHONDIR}/@" -i rsvg/wscript
    python waf configure --enable-modules=rsvg --prefix=$out
  '';

  buildPhase = "python waf build";

  installPhase = "python waf install";

  buildInputs = [ gtk gnome2.gnome_python librsvg pkgconfig pygtk python ];

  meta = with stdenv.lib; {
    homepage = "http://www.pygtk.org";
    description = "The rsvg python module";
    license = licenses.lgpl21;
    maintainers = [ maintainers.goibhniu ];
  };
}