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.
|
||||
result =
|
||||
derivation (
|
||||
(if isNull allowedRequisites then {} else { inherit allowedRequisites; }) //
|
||||
(if isNull allowedRequisites then {} else { allowedRequisites = allowedRequisites ++ defaultNativeBuildInputs; }) //
|
||||
{
|
||||
inherit system name;
|
||||
|
||||
|
@ -287,7 +287,8 @@ rec {
|
||||
allowedRequisites = with stage4.pkgs;
|
||||
[ gzip bzip2 xz bash binutils coreutils diffutils findutils gawk
|
||||
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: {
|
||||
inherit gcc;
|
||||
|
Loading…
Reference in New Issue
Block a user