summary refs log tree commit diff
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2018-03-20 22:34:17 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2018-03-21 08:28:03 +0000
commit9031300f5e05520f4eb0cabdab457427e32a854d (patch)
treed48f1caf361088ca0969602433ce6e6fca919466 /pkgs/applications/gis
parent7842e5dda5986d1f1da33e75bdc5c8135925174d (diff)
downloadnixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar.gz
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar.bz2
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar.lz
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar.xz
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.tar.zst
nixpkgs-9031300f5e05520f4eb0cabdab457427e32a854d.zip
Remove darwin specific patch
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/grass/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix
index 5b36c24ab10..8353bce1b84 100644
--- a/pkgs/applications/gis/grass/default.nix
+++ b/pkgs/applications/gis/grass/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, flex, bison, pkgconfig, zlib, libtiff, libpng, fftw
 , cairo, readline, ffmpeg, makeWrapper, wxGTK30, netcdf, blas
-, proj, gdal, geos, sqlite, postgresql, mysql, python2Packages, lib
+, proj, gdal, geos, sqlite, postgresql, mysql, python2Packages
 }:
 
 stdenv.mkDerivation {
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
 
   # On Darwin the installer tries to symlink the help files into a system
   # directory
-  patches = [] ++ lib.optional stdenv.isDarwin [ ./no_symbolic_links.patch ];
+  patches = [ ./no_symbolic_links.patch ];
 
   configureFlags = [
     "--with-proj-share=${proj}/share/proj"