about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libf2c
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libf2c')
-rw-r--r--nixpkgs/pkgs/development/libraries/libf2c/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libf2c/default.nix b/nixpkgs/pkgs/development/libraries/libf2c/default.nix
new file mode 100644
index 000000000000..85ff493ca04e
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libf2c/default.nix
@@ -0,0 +1,35 @@
+{lib, stdenv, fetchurl, unzip}:
+
+stdenv.mkDerivation rec {
+  name = "libf2c-20160102";
+
+  src = fetchurl {
+    url = "http://www.netlib.org/f2c/libf2c.zip";
+    sha256 = "1q78y8j8xpl8zdzdxmn5ablss56hi5a7vz3idam9l2nfx5q40h6a";
+  };
+
+  unpackPhase = ''
+    mkdir build
+    cd build
+    unzip ${src}
+  '';
+
+  makeFlags = [ "-f" "makefile.u" ];
+
+  installPhase = ''
+    mkdir -p $out/include $out/lib
+    cp libf2c.a $out/lib
+    cp f2c.h $out/include
+  '';
+
+  buildInputs = [ unzip ];
+
+  hardeningDisable = [ "format" ];
+
+  meta = {
+    description = "F2c converts Fortran 77 source code to C";
+    homepage = "http://www.netlib.org/f2c/";
+    license = lib.licenses.mit;
+    platforms = lib.platforms.unix;
+  };
+}