summary refs log tree commit diff
path: root/pkgs/development/libraries/libf2c/default.nix
blob: 66b193d4ea8da8cf5aebcdc486ee24760426aee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{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 = stdenv.lib.licenses.mit;
    platforms = stdenv.lib.platforms.unix;
  };
}