vaultwarden: remove with statements
This commit is contained in:
parent
3eb82a79e4
commit
2e0ccc25d9
@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec {
|
|||||||
env.VW_VERSION = version;
|
env.VW_VERSION = version;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = with lib; [ openssl ]
|
buildInputs = [ openssl ]
|
||||||
++ optionals stdenv.isDarwin [ libiconv Security CoreServices SystemConfiguration ]
|
++ lib.optionals stdenv.isDarwin [ libiconv Security CoreServices SystemConfiguration ]
|
||||||
++ optional (dbBackend == "mysql") libmysqlclient
|
++ lib.optional (dbBackend == "mysql") libmysqlclient
|
||||||
++ optional (dbBackend == "postgresql") postgresql;
|
++ lib.optional (dbBackend == "postgresql") postgresql;
|
||||||
|
|
||||||
buildFeatures = dbBackend;
|
buildFeatures = dbBackend;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user