release notes: https://docs.percona.com/percona-xtrabackup/8.4/release-notes/8.4.0-2.html
18 lines
313 B
Nix
18 lines
313 B
Nix
{ callPackage, ... }@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// {
|
|
version = "8.4.0-2";
|
|
hash = "sha256-ClW/B175z/sxF/MT9iHW1Wtr0ere63tIgUpcMp1IfTs=";
|
|
|
|
# includes https://github.com/Percona-Lab/libkmip.git
|
|
fetchSubmodules = true;
|
|
|
|
extraPatches = [
|
|
];
|
|
|
|
extraPostInstall = '''';
|
|
}
|
|
)
|