* Get rid of those annoying "not an attrSet" trace messages.

svn path=/nixpkgs/trunk/; revision=27141
This commit is contained in:
Eelco Dolstra
2011-05-04 12:43:31 +00:00
parent 2881931569
commit b1e93d013c
5 changed files with 16 additions and 44 deletions

View File

@@ -4,12 +4,10 @@
builderDefsPackage (a :
let
s = import ./src-for-default.nix;
helperArgNames = [];
propagatedBuildInputs = with a; [
gmp mpfr
];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
buildInputs = [ gmp libffi mpfr ];
in
rec {
src = a.fetchUrlFromSrcInfo s;