mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
52506a2744
In accordance to the upstream release cycle, we now provide 2 flavours of the percona mysql ecosystem. The default is the LTS variant, additionally there is now the floating `percona-server_innovation` always pointing to the most recent regular release. - mentioned in release notes - adapted all depending tests and tools (xtrabackup)
16 lines
296 B
Nix
16 lines
296 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "8.3.0-1";
|
|
hash = "sha256-qZM2AFhpwrN0BR+DdozYn7s2I+c1tWpD5QvppTEfGEY=";
|
|
|
|
# includes https://github.com/Percona-Lab/libkmip.git
|
|
fetchSubmodules = true;
|
|
|
|
extraPatches = [
|
|
];
|
|
|
|
extraPostInstall = ''
|
|
'';
|
|
})
|