Update ECL to 12.7.1

This commit is contained in:
Michael Raskin
2012-10-17 15:22:43 +04:00
parent 3f0c47091c
commit df2975f928
3 changed files with 10 additions and 16 deletions
+10 -3
View File
@@ -3,16 +3,23 @@
, ...} @ x:
builderDefsPackage (a :
let
s = import ./src-for-default.nix;
propagatedBuildInputs = with a; [
gmp mpfr
];
buildInputs = [ gmp libffi mpfr ];
in
rec {
src = a.fetchUrlFromSrcInfo s;
mainVersion = "12.7";
revision = "1";
version = "${mainVersion}.${revision}";
name = "ecl-${version}";
src = a.fetchurl {
url = "mirror://sourceforge/project/ecls/ecls/${mainVersion}/${name}.tar.gz";
sha256 = "0k8ww142g3bybvvnlijqsbidl8clbs1pb4ympk2ds07z5swvy2ap";
};
inherit (s) name;
inherit buildInputs propagatedBuildInputs;
configureFlags = [
"--enable-threads"