1{ callPackage, ... }@args:
2
3callPackage ./generic.nix (
4 args
5 // {
6 version = "8.0.35-32";
7 hash = "sha256-aNnAlhhzZ6636dzOz4FFDEE4Mb450HGU42cJrM21GdQ=";
8
9 # includes https://github.com/Percona-Lab/libkmip.git
10 fetchSubmodules = true;
11
12 extraPatches = [
13 ./abi-check.patch
14 ];
15
16 extraPostInstall = ''
17 rm -r "$out"/docs
18 '';
19 }
20)