From 0bae3266ebab9ba41dee4d028338635f7e6841b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 1 Mar 2010 17:08:30 +0000 Subject: [PATCH] Impressive: Fix references to Python's directories. svn path=/nixpkgs/trunk/; revision=20318 --- pkgs/applications/office/impressive/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/impressive/default.nix b/pkgs/applications/office/impressive/default.nix index 5de501ebd41..aa09b48ab27 100644 --- a/pkgs/applications/office/impressive/default.nix +++ b/pkgs/applications/office/impressive/default.nix @@ -43,8 +43,7 @@ in --prefix PYTHONPATH ":" \ ${lib.concatStringsSep ":" (map (path: - path + "/lib/python2.5/site-packages:" + - path + "/lib/python2.4/site-packages") + path + "/lib/${python.libPrefix}/site-packages") [ pil pyopengl pygame setuptools ])} \ --prefix LIBRARY_PATH ":" "${mesa}/lib:${freeglut}/lib" ''; @@ -73,5 +72,8 @@ in homepage = http://impressive.sourceforge.net/; license = "GPLv2"; + + maintainers = [ stdenv.lib.maintainers.ludo ]; + platforms = stdenv.lib.platforms.mesaPlatforms; }; }