about summary refs log tree commit diff
path: root/pkgs/servers/gpsd
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-03-29 15:19:59 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-03-29 15:19:59 +0000
commit353d4508672f05965835f7122b1551f08472776c (patch)
treec2bb7066f6ad0af30b9ec75c94e76cc232aaa9ff /pkgs/servers/gpsd
parent11b67ccee5a2f3c1b12430c7e1f892ac6bccd1c1 (diff)
downloadnixlib-353d4508672f05965835f7122b1551f08472776c.tar
nixlib-353d4508672f05965835f7122b1551f08472776c.tar.gz
nixlib-353d4508672f05965835f7122b1551f08472776c.tar.bz2
nixlib-353d4508672f05965835f7122b1551f08472776c.tar.lz
nixlib-353d4508672f05965835f7122b1551f08472776c.tar.xz
nixlib-353d4508672f05965835f7122b1551f08472776c.tar.zst
nixlib-353d4508672f05965835f7122b1551f08472776c.zip
* wrapPythonPrograms: don't hard-code the Python library prefix.
svn path=/nixpkgs/branches/modular-python/; revision=26594
Diffstat (limited to 'pkgs/servers/gpsd')
-rw-r--r--pkgs/servers/gpsd/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/gpsd/default.nix b/pkgs/servers/gpsd/default.nix
index c531eafa05a6..267665f7a8b3 100644
--- a/pkgs/servers/gpsd/default.nix
+++ b/pkgs/servers/gpsd/default.nix
@@ -1,6 +1,6 @@
-{ fetchurl, stdenv, python, pkgconfig, dbus, dbus_glib
-, ncurses, libX11, libXt, libXpm, libXaw, libXext, wrapPython
-, libxslt, xmlto, gpsdUser ? "gpsd", pythonPackages }:
+{ fetchurl, stdenv, pythonPackages, pkgconfig, dbus, dbus_glib
+, ncurses, libX11, libXt, libXpm, libXaw, libXext
+, libxslt, xmlto, gpsdUser ? "gpsd" }:
 
 stdenv.mkDerivation rec {
   name = "gpsd-2.39";
@@ -11,9 +11,9 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    python pkgconfig dbus dbus_glib ncurses
-    libX11 libXt libXpm libXaw libXext
-    wrapPython libxslt xmlto
+    pythonPackages.python pythonPackages.wrapPython
+    pkgconfig dbus dbus_glib ncurses libX11 libXt libXpm libXaw libXext
+    libxslt xmlto
   ];
 
   pythonPath = [ pythonPackages.curses ];