47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ stdenv, rustPlatform, fetchFromGitHub, nixosTests
|
|
, pkgconfig, openssl
|
|
, Security, CoreServices
|
|
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
|
|
|
|
let
|
|
featuresFlag = "--features ${dbBackend}";
|
|
|
|
in rustPlatform.buildRustPackage rec {
|
|
pname = "bitwarden_rs";
|
|
version = "1.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dani-garcia";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0hi29vy23a5r23pgzdssd2gvim8vw2vmykck5cl5phq11a3az31p";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = with stdenv.lib; [ openssl ]
|
|
++ optionals stdenv.isDarwin [ Security CoreServices ]
|
|
++ optional (dbBackend == "mysql") libmysqlclient
|
|
++ optional (dbBackend == "postgresql") postgresql;
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
cargoSha256 = "0hv3k5l85nz4syzamranhi237fiwkjnda8v5ssnm2nsmcm7ih9k8";
|
|
cargoBuildFlags = [ featuresFlag ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
echo "Running cargo cargo test ${featuresFlag} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
|
|
cargo test ${featuresFlag} -- ''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
|
|
runHook postCheck
|
|
'';
|
|
|
|
passthru.tests = nixosTests.bitwarden;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unofficial Bitwarden compatible server written in Rust";
|
|
homepage = "https://github.com/dani-garcia/bitwarden_rs";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ msteen ];
|
|
};
|
|
}
|