f2c 20200916 -> 20230428 https://repology.org/project/f2c/versions attrpath: f2c Checking auto update branch... No auto update branch exists Old version 20200916" not present in master derivation file with contents: { lib, stdenv, fetchurl }: stdenv.mkDerivation { pname = "f2c"; version = "20230428"; src = fetchurl { url = "https://www.netlib.org/f2c/src.tgz"; sha256 = "sha256-dLpnwyGjtikhbH7VpIoGHD5cNyKshc6wHczmkTdRcFo="; }; makeFlags = [ "-f" "makefile.u" ]; installPhase = '' runHook preInstall mkdir -p $out/bin $out/share/man/man1 install -m755 f2c $out/bin install -m755 xsum $out/bin install f2c.1t $out/share/man/man1 runHook postInstall ''; meta = with lib; { description = "Convert Fortran 77 source code to C"; homepage = "https://www.netlib.org/f2c/"; license = licenses.mit; maintainers = [ maintainers.markuskowa ]; platforms = platforms.unix; }; }