mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
darwin-frameworks: don't use pure CF
This commit is contained in:
parent
04fa8e006c
commit
97a3e7cf52
@ -119,6 +119,9 @@ let
|
||||
|
||||
propagatedBuildInputs = deps;
|
||||
|
||||
# don't use pure CF for dylibs that depend on frameworks
|
||||
setupHook = ../../../build-support/setup-hooks/fix-darwin-frameworks.sh;
|
||||
|
||||
# allows building the symlink tree
|
||||
__impureHostDeps = [ "/System/Library/Frameworks/${name}.framework" ];
|
||||
|
||||
|
@ -8733,7 +8733,8 @@ with pkgs;
|
||||
libusb = callPackage ../development/libraries/libusb {};
|
||||
|
||||
libusb1 = callPackage ../development/libraries/libusb1 {
|
||||
inherit (darwin) libobjc IOKit;
|
||||
inherit (darwin) libobjc;
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
||||
};
|
||||
|
||||
libusbmuxd = callPackage ../development/libraries/libusbmuxd { };
|
||||
|
Loading…
Reference in New Issue
Block a user