mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
treewide: Fix mysql alias deprecation breakage
62733b37b4
broke evaluation in all
places `pkgs.mysql` was used. Fix this by changing all occurrences to
`pkgs.mariadb`.
This commit is contained in:
parent
f36a65f6e2
commit
59e0120aa5
12 changed files with 16 additions and 16 deletions
|
@ -10,7 +10,7 @@ import ./../make-test-python.nix ({ pkgs, ... } : {
|
|||
services.mysql = {
|
||||
enable = true;
|
||||
initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
|
||||
package = pkgs.mysql;
|
||||
package = pkgs.mariadb;
|
||||
};
|
||||
|
||||
services.mysqlBackup = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue