* Filter out the meta attribute, again.

svn path=/nixpkgs/trunk/; revision=5093
This commit is contained in:
Eelco Dolstra
2006-03-24 16:07:42 +00:00
parent bb28c87406
commit c4ea3e8d77
+1 -1
View File
@@ -18,7 +18,7 @@ let {
} }
// { // {
mkDerivation = attrs: derivation (attrs // { mkDerivation = attrs: derivation ((removeAttrs attrs ["meta"]) // {
builder = shell; builder = shell;
args = ["-e" attrs.builder]; args = ["-e" attrs.builder];
stdenv = body; stdenv = body;