python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / f2c / default.nix
blobf235296308fc82a90f13fe9e8e4e0fa1870a32d1
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation {
4   pname = "f2c";
5   version = "20200916";
7   src = fetchurl {
8     url = "https://www.netlib.org/f2c/src.tgz";
9     sha256 = "0d8xfbv6dk4dz95qds7sd44b5hvara07f2g2c5g4xiwim9b7916l";
10   };
12   makeFlags = [ "-f" "makefile.u" ];
14   installPhase = ''
15     runHook preInstall
17     mkdir -p $out/bin $out/share/man/man1
18     install -m755 f2c $out/bin
19     install -m755 xsum $out/bin
20     install f2c.1t $out/share/man/man1
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "Convert Fortran 77 source code to C";
27     homepage = "https://www.netlib.org/f2c/";
28     license = licenses.mit;
29     maintainers = [ maintainers.markuskowa ];
30     platforms = platforms.unix;
31   };