vaultwarden: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:19:05 -07:00
parent 3eb82a79e4
commit 2e0ccc25d9
No known key found for this signature in database

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;