nixpkgs/pkgs/tools/security/bitwarden_rs/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2020-01-27 16:16:42 +01:00
{ stdenv, rustPlatform, fetchFromGitHub
, pkgconfig, openssl
, Security, CoreServices
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
2019-04-23 21:25:46 +02:00
2020-01-27 16:16:42 +01:00
let
featuresFlag = "--features ${dbBackend}";
in rustPlatform.buildRustPackage rec {
2019-04-23 21:25:46 +02:00
pname = "bitwarden_rs";
2020-05-02 05:22:41 +02:00
version = "1.14.2";
2019-04-23 21:25:46 +02:00
src = fetchFromGitHub {
owner = "dani-garcia";
repo = pname;
rev = version;
2020-05-02 05:22:41 +02:00
sha256 = "0413yjbnj4k917x48h1gnj64kygbr6c1n55f23qkvj0hgbxpgssz";
2019-04-23 21:25:46 +02:00
};
nativeBuildInputs = [ pkgconfig ];
2020-01-27 16:16:42 +01:00
buildInputs = with stdenv.lib; [ openssl ]
++ optionals stdenv.isDarwin [ Security CoreServices ]
++ optional (dbBackend == "mysql") libmysqlclient
++ optional (dbBackend == "postgresql") postgresql;
2019-04-23 21:25:46 +02:00
RUSTC_BOOTSTRAP = 1;
2020-05-02 05:22:41 +02:00
cargoSha256 = "09747f9g7yyq9c8wbfdb3hwxii5xq23ynhba0vc01nhjpjyn0ksd";
2020-01-27 16:16:42 +01: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 21:25:46 +02:00
2019-05-12 16:54:30 +02:00
meta = with stdenv.lib; {
2020-01-27 16:16:42 +01:00
description = "Unofficial Bitwarden compatible server written in Rust";
homepage = "https://github.com/dani-garcia/bitwarden_rs";
2019-04-23 21:25:46 +02:00
license = licenses.gpl3;
maintainers = with maintainers; [ msteen ];
platforms = platforms.all;
};
}