1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 12:50:18 -04:00
nixpkgs/pkgs/tools/backup/percona-xtrabackup/default.nix
Oliver Schmidt 4b5141e018 percona: deprecate innovation/lts release flavours
Percona upstream has decided not to create releases or each MySQL
innovation upstream release, but just for LTS releases.
https://www.percona.com/blog/no-mysql-9-x-innovation-releases-from-percona/
2024-10-13 23:04:24 +02:00

8 lines
209 B
Nix

pkgs: {
percona-xtrabackup_8_0 = pkgs.callPackage ./8_0.nix {
boost = pkgs.boost177;
};
percona-xtrabackup_8_4 = pkgs.callPackage ./8_4.nix { };
percona-xtrabackup = pkgs.percona-xtrabackup_8_4;
}