Fix stdenv allowedRequisites check
It has to include the default build inputs now (like "compress-man-pages.sh").
This commit is contained in:
parent
328f7a621e
commit
e3ef797901
@ -120,7 +120,7 @@ let
|
|||||||
# The stdenv that we are producing.
|
# The stdenv that we are producing.
|
||||||
result =
|
result =
|
||||||
derivation (
|
derivation (
|
||||||
(if isNull allowedRequisites then {} else { inherit allowedRequisites; }) //
|
(if isNull allowedRequisites then {} else { allowedRequisites = allowedRequisites ++ defaultNativeBuildInputs; }) //
|
||||||
{
|
{
|
||||||
inherit system name;
|
inherit system name;
|
||||||
|
|
||||||
|
@ -287,7 +287,8 @@ rec {
|
|||||||
allowedRequisites = with stage4.pkgs;
|
allowedRequisites = with stage4.pkgs;
|
||||||
[ gzip bzip2 xz bash binutils coreutils diffutils findutils gawk
|
[ gzip bzip2 xz bash binutils coreutils diffutils findutils gawk
|
||||||
glibc gnumake gnused gnutar gnugrep gnupatch patchelf attr acl
|
glibc gnumake gnused gnutar gnugrep gnupatch patchelf attr acl
|
||||||
paxctl zlib pcre linuxHeaders ed gcc gcc.gcc libsigsegv ];
|
paxctl zlib pcre linuxHeaders ed gcc gcc.gcc libsigsegv
|
||||||
|
];
|
||||||
|
|
||||||
overrides = pkgs: {
|
overrides = pkgs: {
|
||||||
inherit gcc;
|
inherit gcc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user