perlPackages.ExtUtilsF77: init at 1.23

This commit is contained in:
Souvik Sen 2020-04-07 09:56:45 -04:00 committed by Souvik Sen
parent 05f0934825
commit 87c7632877

View File

@ -6689,6 +6689,20 @@ let
};
};
ExtUtilsF77 = buildPerlPackage rec {
pname = "ExtUtils-F77";
version = "1.23";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KG/KGB/${pname}-${version}.tar.gz";
sha256 = "634715969c1650be815b3f11c151444e8793ebd6b6d92ce8654d56d6f893a6a9";
};
buildInputs = [ FileWhich pkgs.gfortran ];
meta = {
description = "A simple interface to F77 libs";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
ExtUtilsHelpers = buildPerlPackage {
pname = "ExtUtils-Helpers";
version = "0.026";