summary refs log tree commit diff
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorIzorkin <Izorkin@gmail.com>2017-12-28 11:58:46 +0300
committerRobin Gloster <mail@glob.in>2017-12-29 02:18:35 +0100
commit3acfd319e44d26ae8a35f1b35e80810c40243e82 (patch)
tree3714702da8ec71fc1ec44fb22f825b22a1bcfd05 /pkgs/applications/gis
parenta6bb022b15a9aa45c6fc92a5459478744e514309 (diff)
downloadnixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar.gz
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar.bz2
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar.lz
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar.xz
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.tar.zst
nixpkgs-3acfd319e44d26ae8a35f1b35e80810c40243e82.zip
grass: client -> connector-c
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/grass/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix
index 3382bb3e56d..56512e6c6ea 100644
--- a/pkgs/applications/gis/grass/default.nix
+++ b/pkgs/applications/gis/grass/default.nix
@@ -22,9 +22,12 @@ stdenv.mkDerivation {
     "--with-wxwidgets"
     "--with-netcdf"
     "--with-geos"
-    "--with-postgres" "--with-postgres-libs=${postgresql.lib}/lib/"
+    "--with-postgres"
+    "--with-postgres-libs=${postgresql.lib}/lib/"
     # it complains about missing libmysqld but doesn't really seem to need it
-    "--with-mysql" "--with-mysql-includes=${stdenv.lib.getDev mysql.client}/include/mysql"
+    "--with-mysql"
+    "--with-mysql-includes=${mysql.connector-c}/include/mysql"
+    "--with-mysql-libs=${mysql.connector-c}/lib/mysql"
     "--with-blas"
   ];