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 , libiconv 13 , sqlite 14 , postgresql 15 - , mariadb 16 , zlib 17 }: 18 ··· 42 ++ optional (stdenv.isDarwin && mysqlSupport) libiconv 43 ++ optional sqliteSupport sqlite 44 ++ optional postgresqlSupport postgresql 45 - ++ optionals mysqlSupport [ mariadb zlib ]; 46 47 buildNoDefaultFeatures = true; 48 buildFeatures = optional sqliteSupport "sqlite"
··· 12 , libiconv 13 , sqlite 14 , postgresql 15 + , libmysqlclient 16 , zlib 17 }: 18 ··· 42 ++ optional (stdenv.isDarwin && mysqlSupport) libiconv 43 ++ optional sqliteSupport sqlite 44 ++ optional postgresqlSupport postgresql 45 + ++ optionals mysqlSupport [ libmysqlclient zlib ]; 46 47 buildNoDefaultFeatures = true; 48 buildFeatures = optional sqliteSupport "sqlite"