summary refs log tree commit diff
path: root/pkgs/development/libraries/libf2c
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-11 00:03:11 +0000
committerRobin Gloster <mail@glob.in>2016-02-11 00:03:11 +0000
commitc648eeda49165e18285880ef01007dcd76d45524 (patch)
tree0e95a5798ce7330b77c9fe11d55c858912e4e5da /pkgs/development/libraries/libf2c
parent8a018e730f5bbbc1165689fe61e1c4040bf9345f (diff)
downloadnixlib-c648eeda49165e18285880ef01007dcd76d45524.tar
nixlib-c648eeda49165e18285880ef01007dcd76d45524.tar.gz
nixlib-c648eeda49165e18285880ef01007dcd76d45524.tar.bz2
nixlib-c648eeda49165e18285880ef01007dcd76d45524.tar.lz
nixlib-c648eeda49165e18285880ef01007dcd76d45524.tar.xz
nixlib-c648eeda49165e18285880ef01007dcd76d45524.tar.zst
nixlib-c648eeda49165e18285880ef01007dcd76d45524.zip
libf2c: turn off format hardening
Diffstat (limited to 'pkgs/development/libraries/libf2c')
-rw-r--r--pkgs/development/libraries/libf2c/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libf2c/default.nix b/pkgs/development/libraries/libf2c/default.nix
index 3123bb33d45b..8edc53cb7eec 100644
--- a/pkgs/development/libraries/libf2c/default.nix
+++ b/pkgs/development/libraries/libf2c/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   name = "libf2c-20100903";
-  
+
   src = fetchurl {
     url = http://www.netlib.org/f2c/libf2c.zip;
     sha256 = "1mcp1lh7gay7hm186dr0wvwd2bc05xydhnc1qy3dqs4n3r102g7i";
@@ -24,6 +24,8 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ unzip ];
 
+  hardening_format = false;
+
   meta = {
     description = "F2c converts Fortran 77 source code to C";
     homepage = http://www.netlib.org/f2c/;