Merge pull request #294026 from szlend/diesel-cli-remove-mariadb-server-dep

diesel-cli: remove dependency on mariadb server

authored by

Pol Dellaiera and committed by
GitHub
272ba9d4 d53c6a81

+2 -2
+2 -2
pkgs/development/tools/diesel-cli/default.nix
··· 12 12 , libiconv 13 13 , sqlite 14 14 , postgresql 15 - , mariadb 15 + , libmysqlclient 16 16 , zlib 17 17 }: 18 18 ··· 42 42 ++ optional (stdenv.isDarwin && mysqlSupport) libiconv 43 43 ++ optional sqliteSupport sqlite 44 44 ++ optional postgresqlSupport postgresql 45 - ++ optionals mysqlSupport [ mariadb zlib ]; 45 + ++ optionals mysqlSupport [ libmysqlclient zlib ]; 46 46 47 47 buildNoDefaultFeatures = true; 48 48 buildFeatures = optional sqliteSupport "sqlite"