From f1faec8249eb74ee7a8a74e52cbffb50386cab25 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sun, 4 Aug 2019 10:41:55 -0400 Subject: [PATCH] nixos/mysql: test the mysql package, not just mariadb --- nixos/tests/mysql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/mysql.nix b/nixos/tests/mysql.nix index abf9606aa36..05bd968de02 100644 --- a/nixos/tests/mysql.nix +++ b/nixos/tests/mysql.nix @@ -19,7 +19,7 @@ import ./make-test.nix ({ pkgs, ...} : { services.mysql.initialScript = pkgs.writeText "mysql-init.sql" '' CREATE USER 'passworduser'@'localhost' IDENTIFIED BY 'password123'; ''; - services.mysql.package = pkgs.mysql; + services.mysql.package = pkgs.mysql57; }; mariadb =