about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-01-14 14:55:18 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-01-14 14:55:18 +0100
commit4e88fe4998eca8ac15f8ac36c587471ef477b8df (patch)
tree5318f911860af88d84b906a9b89af28650d45835 /pkgs/applications
parentd535b2df06e0d1e8cd38143a2000deb07fc074f9 (diff)
downloadnixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar.gz
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar.bz2
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar.lz
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar.xz
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.tar.zst
nixlib-4e88fe4998eca8ac15f8ac36c587471ef477b8df.zip
grass: fix build
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/gis/grass/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix
index 7d2828115f77..790997e328b4 100644
--- a/pkgs/applications/gis/grass/default.nix
+++ b/pkgs/applications/gis/grass/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation {
   postInstall = ''
     wrapProgram $out/bin/grass70 \
     --set PYTHONPATH $PYTHONPATH \
-    --set GRASS_PYTHON ${python2Packages.python}/bin/${python2Packages.python.executable}
+    --set GRASS_PYTHON ${python2Packages.python}/bin/${python2Packages.python.executable} \
     --suffix LD_LIBRARY_PATH ':' '${gdal}/lib'
     ln -s $out/grass-*/lib $out/lib
   '';