From 83e25f83c83e329ddff35a88a87a3b875ab6c9c3 Mon Sep 17 00:00:00 2001 From: Russell O'Connor Date: Wed, 15 Dec 2010 15:56:04 +0000 Subject: [PATCH] Patch Inkscape to support PDF importing. svn path=/nixpkgs/trunk/; revision=25151 --- pkgs/applications/graphics/inkscape/default.nix | 4 ++-- 1 file 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";