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:
talyz
2021-06-04 21:42:08 +02:00
parent f36a65f6e2
commit 59e0120aa5
12 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -173,7 +173,7 @@ with super;
MYSQL_LIBDIR="${pkgs.libmysqlclient}/lib/mysql";
};
buildInputs = [
pkgs.mysql.client
pkgs.mariadb.client
pkgs.libmysqlclient
];
});