about summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/3.0.nix
blob: d3cd0ece00df3fd5511d21e24a019a6504ffb6aa (plain) (blame)
1
2
3
4
5
6
7
8
9
{ callPackage, stdenv, lib, ... } @ args:

callPackage ./generic.nix (args // {
  baseVersion = "3.4";
  revision = "0";
  hash = "sha256-cYQ6/MCixYX48z+jBPC1iuS5xdgwb4lGZ7N0YEQndVc=";
  # this patch fixes build errors on MacOS with SDK 10.12, recheck to remove this again
  extraPatches = lib.optionals stdenv.hostPlatform.isDarwin [ ./botan3-macos.patch ];
})