summary refs log tree commit diff
path: root/pkgs/development/compilers/clean/default.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-08 09:55:18 +0000
committerRobin Gloster <mail@glob.in>2016-02-08 09:55:18 +0000
commitb457f695d99ad040bb72b0f3de6cfaefc68ae12c (patch)
treec9ef2ff1975ff0708ecac69638a010d0a78ec7eb /pkgs/development/compilers/clean/default.nix
parentee20b0d6a0b0708913f6e81695f855d9ae6ec5aa (diff)
downloadnixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar.gz
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar.bz2
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar.lz
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar.xz
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.tar.zst
nixlib-b457f695d99ad040bb72b0f3de6cfaefc68ae12c.zip
clean: turn off format and pic hardening
Diffstat (limited to 'pkgs/development/compilers/clean/default.nix')
-rw-r--r--pkgs/development/compilers/clean/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/clean/default.nix b/pkgs/development/compilers/clean/default.nix
index 7f3e679e8476..dcb7350fbbb2 100644
--- a/pkgs/development/compilers/clean/default.nix
+++ b/pkgs/development/compilers/clean/default.nix
@@ -14,6 +14,9 @@ stdenv.mkDerivation rec {
     })
     else throw "Architecture not supported";
 
+  hardening_format = false;
+  hardening_pic = false;
+
   # clm uses timestamps of dcl, icl, abc and o files to decide what must be rebuild
   # and for chroot builds all of the library files will have equal timestamps.  This
   # makes clm try to rebuild the library modules (and fail due to absence of write permission