vaultwarden: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:32:23 -07:00
parent 3eb82a79e4
commit 2e0ccc25d9
+4 -4
View File
@@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec {
env.VW_VERSION = version;
nativeBuildInputs = [ pkg-config ];
buildInputs = with lib; [ openssl ]
++ optionals stdenv.isDarwin [ libiconv Security CoreServices SystemConfiguration ]
++ optional (dbBackend == "mysql") libmysqlclient
++ optional (dbBackend == "postgresql") postgresql;
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ libiconv Security CoreServices SystemConfiguration ]
++ lib.optional (dbBackend == "mysql") libmysqlclient
++ lib.optional (dbBackend == "postgresql") postgresql;
buildFeatures = dbBackend;