flake.nix: pass most darwin frameworks unconditionally
...for simplicity
This commit is contained in:
parent
d73272f18b
commit
fea0239e24
1 changed files with 4 additions and 4 deletions
|
@ -77,12 +77,12 @@ let
|
|||
# separately
|
||||
darwinBuildInputs =
|
||||
with darwin.apple_sdk.frameworks;
|
||||
[ Accelerate ]
|
||||
++ optionals useMetalKit [ MetalKit ]
|
||||
++ optionals (!useMetalKit) [
|
||||
[
|
||||
Accelerate
|
||||
CoreVideo
|
||||
CoreGraphics
|
||||
];
|
||||
]
|
||||
++ optionals useMetalKit [ MetalKit ];
|
||||
|
||||
cudaBuildInputs = with cudaPackages; [
|
||||
cuda_cccl.dev # <nv/target>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue