mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Move the customOverrides after the stdenvOverrides.
This change is not backward compatible, in the sense that this allow you to override the packages which used to be overriden by the last stage of stdenv. Note, this does not mean that these packages would be used by stdenv.
This commit is contained in:
parent
9e8c5208a1
commit
21b8007bcf
@ -140,10 +140,10 @@ let
|
||||
pkgs_5 = pkgs_4 // allPackages pkgs pkgs_4;
|
||||
pkgs_6 = pkgs_5 // aliases pkgs pkgs_5;
|
||||
|
||||
pkgs_7 = pkgs_6 // customOverrides pkgs pkgs_6;
|
||||
pkgs_7 = pkgs_6 // stdenvOverrides pkgs pkgs_6;
|
||||
|
||||
# The overriden, final packages.
|
||||
pkgs = pkgs_7 // stdenvOverrides pkgs pkgs_6;
|
||||
pkgs = pkgs_7 // customOverrides pkgs pkgs_6;
|
||||
in pkgs;
|
||||
|
||||
in
|
||||
|
Loading…
Reference in New Issue
Block a user