mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
e1a273c11b
Changelog: https://botan.randombit.net/news.html Most notable changes: better PQC and TLS 1.3 support Signed-off-by: Markus Theil <theil.markus@gmail.com>
10 lines
313 B
Nix
10 lines
313 B
Nix
{ callPackage, fetchpatch, lib, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
baseVersion = "3.2";
|
|
revision = "0";
|
|
sha256 = "BJyEeDX89u86niBrM94F3TiZnDJeJHSCdypVmNnl7OM=";
|
|
# reconsider removing this platform marking, when MacOS uses Clang 14.0+ by default.
|
|
badPlatforms = lib.platforms.darwin;
|
|
})
|