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:
Nicolas B. Pierron 2016-03-20 19:04:15 +00:00
parent 9e8c5208a1
commit 21b8007bcf

View file

@ -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