mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 14:32:59 +00:00
ddnet: fix x86 darwin
Aligned alloc requires higher sdk.
This commit is contained in:
parent
b761a3a403
commit
a4c1840b8d
@ -8,6 +8,7 @@
|
||||
pkg-config,
|
||||
rustPlatform,
|
||||
rustc,
|
||||
apple-sdk_11,
|
||||
curl,
|
||||
freetype,
|
||||
libGLU,
|
||||
@ -27,10 +28,6 @@
|
||||
glslang,
|
||||
spirv-tools,
|
||||
gtest,
|
||||
Carbon,
|
||||
Cocoa,
|
||||
OpenGL,
|
||||
Security,
|
||||
buildClient ? true,
|
||||
}:
|
||||
|
||||
@ -91,10 +88,7 @@ stdenv.mkDerivation rec {
|
||||
libX11
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
Carbon
|
||||
Cocoa
|
||||
OpenGL
|
||||
Security
|
||||
apple-sdk_11
|
||||
]
|
||||
);
|
||||
|
||||
|
@ -17025,9 +17025,7 @@ with pkgs;
|
||||
deliantra-maps = callPackage ../games/deliantra/maps.nix { };
|
||||
deliantra-data = callPackage ../games/deliantra/data.nix { };
|
||||
|
||||
ddnet = callPackage ../games/ddnet {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa OpenGL Security;
|
||||
};
|
||||
ddnet = callPackage ../games/ddnet {};
|
||||
ddnet-server = ddnet.override { buildClient = false; };
|
||||
|
||||
devilutionx = callPackage ../games/devilutionx {
|
||||
|
Loading…
Reference in New Issue
Block a user