summary refs log tree commit diff
path: root/pkgs/applications/graphics/inkscape
diff options
context:
space:
mode:
authorRussell O'Connor <roconnor@theorem.ca>2010-12-15 15:56:04 +0000
committerRussell O'Connor <roconnor@theorem.ca>2010-12-15 15:56:04 +0000
commit83e25f83c83e329ddff35a88a87a3b875ab6c9c3 (patch)
treefcc866f8d0fed3b20ebe8d8f5899f0f2b76774e4 /pkgs/applications/graphics/inkscape
parentdc09f8766a9aea20e33b64af6979d73f6c03d9bb (diff)
downloadnixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar.gz
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar.bz2
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar.lz
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar.xz
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.tar.zst
nixlib-83e25f83c83e329ddff35a88a87a3b875ab6c9c3.zip
Patch Inkscape to support PDF importing.
svn path=/nixpkgs/trunk/; revision=25151
Diffstat (limited to 'pkgs/applications/graphics/inkscape')
-rw-r--r--pkgs/applications/graphics/inkscape/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/inkscape/default.nix b/pkgs/applications/graphics/inkscape/default.nix
index 01b72599fb14..08adb7902dae 100644
--- a/pkgs/applications/graphics/inkscape/default.nix
+++ b/pkgs/applications/graphics/inkscape/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig, perl, perlXMLParser, gtk, libXft
 , libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm
 , glibmm, libsigcxx, lcms, boost, gettext, makeWrapper, intltool
-, gsl, python, pyxml, lxml }:
+, gsl, python, pyxml, lxml, poppler }:
 
 stdenv.mkDerivation rec {
   name = "inkscape-0.48.0";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     pkgconfig perl perlXMLParser gtk libXft libpng zlib popt boehmgc
     libxml2 libxslt glib gtkmm glibmm libsigcxx lcms boost gettext
-    makeWrapper intltool gsl
+    makeWrapper intltool gsl poppler
   ];
 
   configureFlags = "--with-python";