mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +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)
11 lines
390 B
Nix
11 lines
390 B
Nix
{ lib, pkgs }: {
|
|
mariadbPackages = lib.filterAttrs (n: _: lib.hasPrefix "mariadb" n) (import ../../../pkgs/servers/sql/mariadb pkgs);
|
|
mysqlPackages = {
|
|
inherit (pkgs) mysql80;
|
|
};
|
|
perconaPackages = {
|
|
inherit (pkgs) percona-server_lts percona-server_innovation;
|
|
};
|
|
mkTestName = pkg: "mariadb_${builtins.replaceStrings ["."] [""] (lib.versions.majorMinor pkg.version)}";
|
|
}
|