about summary refs log tree commit diff
path: root/pkgs/applications/graphics/inkscape/default.nix
blob: b8ff248633002a2994414ecc18abbf26de0c6c48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args: with args;

stdenv.mkDerivation rec {
  name = "inkscape-0.45.1";

  src = fetchurl {
    url = "mirror://sf/inkscape/${name}.tar.gz";
    sha256 = "1y0b9bm8chn6a2ip99dj4dhg0188yn67v571ha0x38wrlmvn4k0d";
  };

  buildInputs = [
    pkgconfig perl perlXMLParser gtk libXft fontconfig libpng zlib popt boehmgc
    libxml2 libxslt glib gtkmm glibmm libsigcxx lcms boost gettext
  ];

  meta = {
    homepage = http://www.inkscape.org;
  };
}