summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
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
parent853261c5c5cda7eff019775b02f3f3086132f8d4 (diff)
adding python package lxml to make scripts in inkscape work
svn path=/nixpkgs/trunk/; revision=17858
Diffstat (limited to 'pkgs/applications/graphics')
-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 cf708da62a96..c0f9b1680044 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
'';