mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
18 lines
342 B
Nix
18 lines
342 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "8.0.34-29";
|
|
hash = "sha256-dO5ciIIAnKj2t+fYhrtnY7MvBThoA+SymBzN8H07giM=";
|
|
|
|
# includes https://github.com/Percona-Lab/libkmip.git
|
|
fetchSubmodules = true;
|
|
|
|
extraPatches = [
|
|
./abi-check.patch
|
|
];
|
|
|
|
extraPostInstall = ''
|
|
rm -r "$out"/docs
|
|
'';
|
|
})
|