mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Build ECL with DFFI
svn path=/nixpkgs/trunk/; revision=25610
This commit is contained in:
parent
0db18b0d5f
commit
b3583dc847
@ -1,11 +1,15 @@
|
||||
a :
|
||||
{builderDefsPackage
|
||||
, gmp, mpfr, libffi
|
||||
, ...} @ x:
|
||||
builderDefsPackage (a :
|
||||
let
|
||||
s = import ./src-for-default.nix;
|
||||
buildInputs = with a; [
|
||||
];
|
||||
helperArgNames = [];
|
||||
propagatedBuildInputs = with a; [
|
||||
gmp mpfr
|
||||
];
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
in
|
||||
rec {
|
||||
src = a.fetchUrlFromSrcInfo s;
|
||||
@ -35,4 +39,4 @@ rec {
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
};
|
||||
}
|
||||
}) x
|
||||
|
@ -1542,9 +1542,7 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
ecl = builderDefsPackage ../development/compilers/ecl {
|
||||
inherit gmp mpfr;
|
||||
};
|
||||
ecl = callPackage ../development/compilers/ecl { };
|
||||
|
||||
eql = callPackage ../development/compilers/eql {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user