Files
nixpkgs/pkgs/tools/backup/percona-xtrabackup/8_0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
368 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ callPackage, ... }@args:
callPackage ./generic.nix (
args
// {
version = "8.0.35-32";
hash = "sha256-aNnAlhhzZ6636dzOz4FFDEE4Mb450HGU42cJrM21GdQ=";
# includes https://github.com/Percona-Lab/libkmip.git
fetchSubmodules = true;
extraPatches = [
./abi-check.patch
];
extraPostInstall = ''
rm -r "$out"/docs
'';
}
)