Making eval-config not pass 'platform' as a nixpkgs parameter, but expect a nixpkgs config attribute.

svn path=/nixos/branches/stdenv-updates/; revision=23688
This commit is contained in:
Lluís Batlle i Rossell 2010-09-08 16:52:15 +00:00
parent 10a3bd6ffe
commit 7fe1c5fe90
2 changed files with 1 additions and 8 deletions

View file

@ -60,7 +60,7 @@ rec {
in
{
inherit system;
inherit (nixpkgsOptions) config platform;
inherit (nixpkgsOptions) config;
});
# Optionally check wether all config values have corresponding

View file

@ -13,12 +13,5 @@
'';
};
nixpkgs.platform = pkgs.lib.mkOption {
default = pkgs.platforms.pc;
description = ''
The platform for the Nix Packages collection.
'';
};
};
}