2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, nixosTests
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config, openssl
|
2020-01-27 15:16:42 +00:00
|
|
|
, Security, CoreServices
|
|
|
|
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
|
2019-04-23 20:25:46 +01:00
|
|
|
|
2020-01-27 15:16:42 +00:00
|
|
|
let
|
|
|
|
featuresFlag = "--features ${dbBackend}";
|
|
|
|
|
|
|
|
in rustPlatform.buildRustPackage rec {
|
2019-04-23 20:25:46 +01:00
|
|
|
pname = "bitwarden_rs";
|
2021-03-29 23:33:00 +01:00
|
|
|
version = "1.20.0";
|
2019-04-23 20:25:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dani-garcia";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-03-29 23:33:00 +01:00
|
|
|
sha256 = "1ncy4iwmdzdp8rv1gc5i4s1rp97d94n4l4bh08v6w4zdpx0zn8b9";
|
2019-04-23 20:25:46 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = with lib; [ openssl ]
|
2020-01-27 15:16:42 +00:00
|
|
|
++ optionals stdenv.isDarwin [ Security CoreServices ]
|
|
|
|
++ optional (dbBackend == "mysql") libmysqlclient
|
|
|
|
++ optional (dbBackend == "postgresql") postgresql;
|
2019-04-23 20:25:46 +01:00
|
|
|
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
|
2021-03-29 23:33:00 +01:00
|
|
|
cargoSha256 = "139by5y2ma3v52nabzr5man1qy395rchs2dlivkj9xi829kg4mcr";
|
2020-01-27 15:16:42 +00:00
|
|
|
cargoBuildFlags = [ featuresFlag ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo cargo test ${featuresFlag} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
|
|
|
|
cargo test ${featuresFlag} -- ''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
2019-04-23 20:25:46 +01:00
|
|
|
|
2020-06-06 11:55:50 +01:00
|
|
|
passthru.tests = nixosTests.bitwarden;
|
|
|
|
|
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";
|
|
|
|
homepage = "https://github.com/dani-garcia/bitwarden_rs";
|
2021-02-13 00:48:40 +00:00
|
|
|
license = licenses.gpl3Only;
|
2019-04-23 20:25:46 +01:00
|
|
|
maintainers = with maintainers; [ msteen ];
|
|
|
|
};
|
|
|
|
}
|