top-level: Remove redundant arguments from top-level/{all-package,stdenv}.nix

This commit is contained in:
John Ericson
2016-11-02 18:36:02 -04:00
parent 68a04c1195
commit eed34bd214
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -79,12 +79,12 @@ let
stdenvDefault = self: super:
import ./stdenv.nix {
inherit system bootStdenv noSysDirs config crossSystem platform lib nixpkgsFun pkgs;
inherit system bootStdenv crossSystem config platform lib nixpkgsFun pkgs;
};
allPackages = self: super:
let res = import ./all-packages.nix
{ inherit system bootStdenv noSysDirs config crossSystem platform lib nixpkgsFun; }
{ inherit system noSysDirs config crossSystem platform lib nixpkgsFun; }
res self;
in res;