Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / f2c / default.nix
blob63b3c5ae32eb861664ee8f4485450b9106252c8d
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation {
4   pname = "f2c";
5   version = "20230428";
7   src = fetchurl {
8     url = "https://www.netlib.org/f2c/src.tgz";
9     sha256 = "sha256-dLpnwyGjtikhbH7VpIoGHD5cNyKshc6wHczmkTdRcFo=";
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   };