pkgs/overlays/unstable: fix crosscompiling
This commit is contained in:
parent
4f10f70c70
commit
bc5c7553db
1 changed files with 4 additions and 4 deletions
|
@ -16,10 +16,10 @@ let
|
|||
|
||||
nixpkgsRevision = (builtins.readFile "${unstablePkgsExprs}/.git-revision");
|
||||
unstablePkgsForNixpkgs = nixpkgs: import unstablePkgsExprs {
|
||||
# localSystem -> pkgs.stdenv.hostPlatform or pkgs.stdenv.hostPlatform ???
|
||||
localSystem = nixpkgs.stdenv.hostPlatform;
|
||||
# crossSystem -> nixpkgs.stdenv.targetPlatform
|
||||
crossSystem = nixpkgs.stdenv.targetPlatform;
|
||||
# localSystem -> pkgs.stdenv.buildPlatform
|
||||
localSystem = nixpkgs.stdenv.buildPlatform;
|
||||
# crossSystem -> pkgs.stdenv.hostPlatform or pkgs.stdenv.targetPlatform ??
|
||||
crossSystem = nixpkgs.stdenv.hostPlatform;
|
||||
# config -> pkgs.config
|
||||
config = nixpkgs.config;
|
||||
# overlays -> partial of pkgs.overlays
|
||||
|
|
Loading…
Reference in a new issue