mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
14 lines
342 B
Nix
14 lines
342 B
Nix
{
|
|
callPackage,
|
|
Foundation,
|
|
libobjc,
|
|
}:
|
|
|
|
callPackage ./generic.nix ({
|
|
inherit Foundation libobjc;
|
|
version = "5.20.1.34";
|
|
sha256 = "12vw5dkhmp1vk9l658pil8jiqirkpdsc5z8dm5mpj595yr6d94fd";
|
|
enableParallelBuilding = true;
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types -Wno-error=implicit-function-declaration";
|
|
})
|