summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-11 01:35:53 +0000
committerRobin Gloster <mail@glob.in>2016-02-11 01:35:53 +0000
commit8e2adea08a19b30c932026e48222e6beeca21ac8 (patch)
treeae9d26aaaee1eaa3c84b76548d5027401ffd6502 /pkgs/development/libraries/gdal
parent7517563efb783ae05c846d5266d08294d22b91c9 (diff)
downloadnixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar.gz
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar.bz2
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar.lz
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar.xz
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.tar.zst
nixlib-8e2adea08a19b30c932026e48222e6beeca21ac8.zip
gdal: turn off format hardening
Diffstat (limited to 'pkgs/development/libraries/gdal')
-rw-r--r--pkgs/development/libraries/gdal/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index 8cf84eb08c3d..582ab53800eb 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -14,6 +14,8 @@ composableDerivation.composableDerivation {} (fixed: rec {
   buildInputs = [ unzip libjpeg libtiff libpng proj openssl ]
   ++ (with pythonPackages; [ python numpy wrapPython ]);
 
+  hardening_format = false;
+
   patches = [
     # This ensures that the python package is installed into gdal's prefix,
     # rather than trying to install into python's prefix.