summary refs log tree commit diff
path: root/pkgs/applications/graphics/inkscape
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-10-18 04:43:40 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-10-18 04:43:40 +0000
commitf808690b1604a32a121bc2af6c207761f8f1f4f6 (patch)
tree02f1f2b3f991c70e754137169f5a3c5d96bda6ff /pkgs/applications/graphics/inkscape
parent853261c5c5cda7eff019775b02f3f3086132f8d4 (diff)
downloadnixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar.gz
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar.bz2
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar.lz
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar.xz
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.tar.zst
nixpkgs-f808690b1604a32a121bc2af6c207761f8f1f4f6.zip
adding python package lxml to make scripts in inkscape work
svn path=/nixpkgs/trunk/; revision=17858
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 cf708da62a9..c0f9b168004 100644
--- a/pkgs/applications/graphics/inkscape/default.nix
+++ b/pkgs/applications/graphics/inkscape/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   propagatedBuildInputs = [
     # Python is used at run-time to execute scripts, e.g., those from
     # the "Effects" menu.
-    python pyxml
+    python pyxml lxml
   ];
 
   buildInputs = [
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
     for i in "$out/bin/"*
     do
       wrapProgram "$i" --prefix PYTHONPATH :      \
-       "$(toPythonPath ${pyxml})" ||  \
+       "$(toPythonPath ${pyxml}):$(toPythonPath ${lxml})" ||  \
         exit 2
     done
   '';