mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
f2c: init at 20200916 (#125360)
This commit is contained in:
parent
2b7ab52ae1
commit
420000ebc4
32
pkgs/development/tools/f2c/default.nix
Normal file
32
pkgs/development/tools/f2c/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -14876,6 +14876,8 @@ in
|
||||
inherit fontconfig fontDirectories;
|
||||
};
|
||||
|
||||
f2c = callPackage ../development/tools/f2c { };
|
||||
|
||||
freealut = callPackage ../development/libraries/freealut { };
|
||||
|
||||
freeglut = callPackage ../development/libraries/freeglut { };
|
||||
|
Loading…
Reference in New Issue
Block a user