2021-07-01 10:14:51 +01:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, fetchurl, nixosTests
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config, openssl
|
2021-05-11 15:40:37 +01:00
|
|
|
, libiconv, Security, CoreServices
|
2020-01-27 15:16:42 +00:00
|
|
|
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
|
2019-04-23 20:25:46 +01:00
|
|
|
|
2021-11-16 13:18:57 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2021-07-01 10:14:51 +01:00
|
|
|
pname = "vaultwarden";
|
2021-10-28 09:29:32 +01:00
|
|
|
version = "1.23.0";
|
2019-04-23 20:25:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dani-garcia";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-10-28 09:29:32 +01:00
|
|
|
sha256 = "sha256-lbOsJsmZxdBNTbhsGJ1mcjWlJ6802GYM3waTiWYOErY=";
|
2019-04-23 20:25:46 +01:00
|
|
|
};
|
|
|
|
|
2021-10-28 09:29:32 +01:00
|
|
|
cargoSha256 = "sha256-ViXpoPkBznB0o/dc/l1r3m0y+z2w58wqlU8/cg8u7tI=";
|
2021-07-01 10:14:51 +01:00
|
|
|
|
2021-11-16 07:53:28 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Upstream specifies 1.57; nixpkgs has 1.56 which also produces a working
|
|
|
|
# vaultwarden when using RUSTC_BOOTSTRAP=1
|
|
|
|
sed -ri 's/^rust-version = .*//g' Cargo.toml
|
|
|
|
'';
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = with lib; [ openssl ]
|
2021-05-11 15:40:37 +01:00
|
|
|
++ optionals stdenv.isDarwin [ libiconv Security CoreServices ]
|
2020-01-27 15:16:42 +00:00
|
|
|
++ optional (dbBackend == "mysql") libmysqlclient
|
|
|
|
++ optional (dbBackend == "postgresql") postgresql;
|
2019-04-23 20:25:46 +01:00
|
|
|
|
2021-11-16 07:53:28 +00:00
|
|
|
# vaultwarden depends on rocket v0.5.0-dev, which requires nightly features.
|
|
|
|
# This may be removed if https://github.com/dani-garcia/vaultwarden/issues/712 is fixed.
|
2019-04-23 20:25:46 +01:00
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
|
2021-11-16 13:18:57 +00:00
|
|
|
buildFeatures = dbBackend;
|
2019-04-23 20:25:46 +01:00
|
|
|
|
2021-07-01 10:14:51 +01:00
|
|
|
passthru.tests = nixosTests.vaultwarden;
|
2020-06-06 11:55:50 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-01-27 15:16:42 +00:00
|
|
|
description = "Unofficial Bitwarden compatible server written in Rust";
|
2021-07-01 10:14:51 +01:00
|
|
|
homepage = "https://github.com/dani-garcia/vaultwarden";
|
2021-02-13 00:48:40 +00:00
|
|
|
license = licenses.gpl3Only;
|
2021-11-16 07:53:28 +00:00
|
|
|
maintainers = with maintainers; [ msteen ivan ];
|
2019-04-23 20:25:46 +01:00
|
|
|
};
|
|
|
|
}
|