f2c: init at 20200916 (#125360)

This commit is contained in:
markuskowa 2021-06-06 01:10:06 +02:00 committed by GitHub
parent 2b7ab52ae1
commit 420000ebc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
pname = "f2c";
version = "20200916";
src = fetchurl {
url = "https://www.netlib.org/f2c/src.tgz";
sha256 = "0d8xfbv6dk4dz95qds7sd44b5hvara07f2g2c5g4xiwim9b7916l";
};
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;
};
}

View file

@ -14876,6 +14876,8 @@ in
inherit fontconfig fontDirectories;
};
f2c = callPackage ../development/tools/f2c { };
freealut = callPackage ../development/libraries/freealut { };
freeglut = callPackage ../development/libraries/freeglut { };