top-level: top-level/stdenv.nix no longer needs pkg argument

This commit is contained in:
John Ericson 2016-04-27 08:09:12 -07:00
parent e22346c35e
commit ea7bf02268
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ let
stdenvDefault = self: super: stdenvDefault = self: super:
import ./stdenv.nix { import ./stdenv.nix {
inherit system bootStdenv crossSystem config platform lib nixpkgsFun pkgs; inherit system bootStdenv crossSystem config platform lib nixpkgsFun;
}; };
allPackages = self: super: allPackages = self: super:

View File

@ -1,4 +1,4 @@
{ system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun, pkgs }: { system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun }:
rec { rec {
allStdenvs = import ../stdenv { allStdenvs = import ../stdenv {