summary refs log tree commit diff
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-06-04 16:08:41 +0200
committertalyz <kim.lindberger@gmail.com>2021-06-04 21:42:08 +0200
commit59e0120aa5c1241d48048afa615e25c65d7e366d (patch)
tree111459a037a28160ca6b46e5b624d4e03a2ad2d9 /nixos/modules/services/databases
parentf36a65f6e2e9f3641f12c7d6e48a5ec4b5c5394b (diff)
downloadnixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar.gz
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar.bz2
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar.lz
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar.xz
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.tar.zst
nixpkgs-59e0120aa5c1241d48048afa615e25c65d7e366d.zip
treewide: Fix mysql alias deprecation breakage
62733b37b4a866cabafe1fc8bb7415240126eb0b broke evaluation in all
places `pkgs.mysql` was used. Fix this by changing all occurrences to
`pkgs.mariadb`.
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/mysql.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/mysql.nix b/nixos/modules/services/databases/mysql.nix
index cf105daeb04..2d8d613ed88 100644
--- a/nixos/modules/services/databases/mysql.nix
+++ b/nixos/modules/services/databases/mysql.nix
@@ -34,7 +34,7 @@ in
 
       package = mkOption {
         type = types.package;
-        example = literalExample "pkgs.mysql";
+        example = literalExample "pkgs.mariadb";
         description = "
           Which MySQL derivation to use. MariaDB packages are supported too.
         ";