stdenv: add libSystem.dev to allowedRequisites

This commit is contained in:
Matthew Justin Bauer 2018-05-03 18:02:57 -05:00 committed by GitHub
parent d88a61e439
commit 5206574be3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ in rec {
allowedRequisites =
[ bootstrapTools ] ++
(with pkgs; [ xz.bin xz.out libcxx libcxxabi ]) ++
(with pkgs.darwin; [ dyld Libsystem CF ICU locale ]);
(with pkgs.darwin; [ dyld Libsystem Libsystem.dev CF ICU locale ]);
overrides = persistent;
};
@ -263,7 +263,7 @@ in rec {
allowedRequisites =
[ bootstrapTools ] ++
(with pkgs; [ xz.bin xz.out bash libcxx libcxxabi ]) ++
(with pkgs.darwin; [ dyld ICU Libsystem locale ]);
(with pkgs.darwin; [ dyld ICU Libsystem Libsystem.dev locale ]);
overrides = persistent;
};
@ -383,7 +383,7 @@ in rec {
binutils.bintools darwin.binutils darwin.binutils.bintools
cc.expand-response-params
]) ++ (with pkgs.darwin; [
dyld Libsystem CF cctools ICU libiconv locale
dyld Libsystem Libsystem.dev CF cctools ICU libiconv locale
]);
overrides = self: super: