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

This commit is contained in:
John Ericson 2016-11-02 17:08:39 -04:00
parent 68a04c1195
commit eed34bd214
3 changed files with 5 additions and 5 deletions

View file

@ -5,9 +5,9 @@
* to merges. Please use the full-text search of your editor. ;)
* Hint: ### starts category names.
*/
{ system, bootStdenv, noSysDirs, config, crossSystem, platform, lib
{ system, noSysDirs, config, crossSystem, platform, lib
, nixpkgsFun
, ... }:
}:
self: pkgs:
with pkgs;

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;

View file

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