mysql: deprecate alias

This commit is contained in:
Sandro Jäckel
2021-04-04 03:18:57 +02:00
parent dcb501f993
commit 62733b37b4
11 changed files with 25 additions and 25 deletions
@@ -1,7 +1,7 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, openssl, pkg-config, Security
, sqliteSupport ? true, sqlite
, postgresqlSupport ? true, postgresql
, mysqlSupport ? true, mysql, zlib, libiconv
, mysqlSupport ? true, mariadb, zlib, libiconv
}:
assert lib.assertMsg (sqliteSupport == true || postgresqlSupport == true || mysqlSupport == true)
@@ -55,7 +55,7 @@ rustPlatform.buildRustPackage rec {
++ optional (stdenv.isDarwin && mysqlSupport) libiconv
++ optional sqliteSupport sqlite
++ optional postgresqlSupport postgresql
++ optionals mysqlSupport [ mysql zlib ];
++ optionals mysqlSupport [ mariadb zlib ];
buildAndTestSubdir = "diesel_cli";