mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
top-level: Remove redundant arguments from top-level/{all-package,stdenv}.nix
This commit is contained in:
parent
68a04c1195
commit
eed34bd214
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun, pkgs, ... }:
|
||||
{ system, bootStdenv, crossSystem, config, platform, lib, nixpkgsFun, pkgs }:
|
||||
|
||||
rec {
|
||||
allStdenvs = import ../stdenv {
|
||||
|
Loading…
Reference in New Issue
Block a user