nixpkgs/pkgs/development/tools/f2c/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
798 B
Nix
Raw Normal View History

2021-06-05 23:10:06 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
pname = "f2c";
2024-04-13 20:48:20 +00:00
version = "20240312";
2021-06-05 23:10:06 +00:00
src = fetchurl {
url = "https://www.netlib.org/f2c/src.tgz";
2024-04-13 20:48:20 +00:00
sha256 = "sha256-TTPve2fe31/Ad+xFAWy6NUIes2QyUi6NjFucN0pdb5k=";
2021-06-05 23:10:06 +00:00
};
makeFlags = [ "-f" "makefile.u" ];
2024-04-13 20:48:20 +00:00
# Ensure xsum binary is built from scratch
preBuild = "rm xsum";
2021-06-05 23:10:06 +00:00
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;
};
}