summary refs log tree commit diff
path: root/pkgs/development/libraries/libgeotiff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-07 16:31:59 +0000
committerRobin Gloster <mail@glob.in>2016-02-07 16:31:59 +0000
commit4b82ba013d1aed89795537095f827140ab6b43d8 (patch)
treec2fa0a510a6300e74f1dc395d5d2876abbaec245 /pkgs/development/libraries/libgeotiff
parent2b1f9509a16a94ebab4a526203e9d60ef6e0c556 (diff)
downloadnixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar.gz
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar.bz2
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar.lz
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar.xz
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.tar.zst
nixpkgs-4b82ba013d1aed89795537095f827140ab6b43d8.zip
libgeotiff: turn off format hardening
Diffstat (limited to 'pkgs/development/libraries/libgeotiff')
-rw-r--r--pkgs/development/libraries/libgeotiff/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libgeotiff/default.nix b/pkgs/development/libraries/libgeotiff/default.nix
index d07aae3ab80..4d9fa09ad75 100644
--- a/pkgs/development/libraries/libgeotiff/default.nix
+++ b/pkgs/development/libraries/libgeotiff/default.nix
@@ -10,6 +10,8 @@ stdenv.mkDerivation {
 
   buildInputs = [ libtiff ];
 
+  hardening_format = false;
+
   meta = {
     description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
     homepage = http://www.remotesensing.org/geotiff/geotiff.html;