about summary refs log tree commit diff
path: root/nixos/tests/mysql
diff options
context:
space:
mode:
authorYorick van Pelt <yorick@yorickvanpelt.nl>2022-10-11 18:36:38 +0200
committerYorick van Pelt <yorick@yorickvanpelt.nl>2022-10-12 11:02:14 +0200
commita5c9290979cc03b30284f02e7002a35f2c609cd1 (patch)
tree68246965a945eaeab911a5404d2fc59db3286bd8 /nixos/tests/mysql
parent0edf1ffc3f236488baa4c09e564923c2c99322c6 (diff)
mysql57: drop
Mysql 5.7 is not EOL yet, but is quite old and fully replaceable
by mysql 8.0 or mariadb.
Diffstat (limited to 'nixos/tests/mysql')
-rw-r--r--nixos/tests/mysql/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/mysql/common.nix b/nixos/tests/mysql/common.nix
index 040d360b6d99c..c0e8f7e3b5d2a 100644
--- a/nixos/tests/mysql/common.nix
+++ b/nixos/tests/mysql/common.nix
@@ -4,7 +4,7 @@
     inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
   });
   mysqlPackages = {
-    inherit (pkgs) mysql57 mysql80;
+    inherit (pkgs) mysql80;
   };
   mkTestName = pkg: "mariadb_${builtins.replaceStrings ["."] [""] (lib.versions.majorMinor pkg.version)}";
 }