2020-01-27 15:16:42 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub
|
|
|
|
, pkgconfig, openssl
|
|
|
|
, 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";
|
2020-06-06 04:07:26 +01:00
|
|
|
version = "1.15.0";
|
2019-04-23 20:25:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dani-garcia";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-06-06 04:07:26 +01:00
|
|
|
sha256 = "12mr7d0mjlh7za4nc3s7cizzbd6v0zfmd7q9s0f7pqz56vw5m21s";
|
2019-04-23 20:25:46 +01:00
|
|
|
};
|
|
|
|
|
2019-05-12 10:26:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2020-01-27 15:16:42 +00:00
|
|
|
buildInputs = with stdenv.lib; [ openssl ]
|
|
|
|
++ optionals stdenv.isDarwin [ Security CoreServices ]
|
|
|
|
++ optional (dbBackend == "mysql") libmysqlclient
|
|
|
|
++ optional (dbBackend == "postgresql") postgresql;
|
2019-04-23 20:25:46 +01:00
|
|
|
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
|
2020-06-06 04:07:26 +01:00
|
|
|
cargoSha256 = "0nacc8xvbkdzbyx4c17hdh03v9ykpis74pbpxkn6v95njw14wq53";
|
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
|
|
|
|
2019-05-12 15:54:30 +01:00
|
|
|
meta = with stdenv.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";
|
2019-04-23 20:25:46 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ msteen ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|