5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
9 lines
320 B
Nix
9 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;
|
|
})
|