* Filter out the meta attribute.

svn path=/nixpkgs/trunk/; revision=5091
This commit is contained in:
Eelco Dolstra
2006-03-24 14:20:31 +00:00
parent 09a9cae715
commit bb28c87406
2 changed files with 3 additions and 3 deletions

View File

@@ -101,7 +101,7 @@ rec {
args = ./scripts/builder-stdenv-initial.sh;
inherit staticTools;
} // {
mkDerivation = attrs: derivation (attrs // {
mkDerivation = attrs: derivation ((removeAttrs attrs ["meta"]) // {
builder = ./tools/bash;
args = ["-e" attrs.builder];
stdenv = body;