mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
dc7750f637
Default clang 11 on MacOS is too old for botan 3, which requires at least clang 14. Signed-off-by: Markus Theil <theil.markus@gmail.com>
10 lines
320 B
Nix
10 lines
320 B
Nix
{ callPackage, fetchpatch, lib, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
baseVersion = "3.1";
|
|
revision = "1";
|
|
sha256 = "sha256-MMhP6RmTapj+9TMfJGxiqiwOTSCFstRREgf2ogr6Oms=";
|
|
# reconsider removing this platform marking, when MacOS uses Clang 14.0+ by default.
|
|
badPlatforms = lib.platforms.darwin;
|
|
})
|