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

29 lines
772 B
Nix
Raw Normal View History

2020-06-06 12:55:50 +02:00
{ stdenv, fetchurl, nixosTests }:
2019-04-23 21:25:46 +02:00
stdenv.mkDerivation rec {
pname = "bitwarden_rs-vault";
2020-10-17 21:12:17 +02:00
version = "2.16.1";
2019-04-23 21:25:46 +02:00
src = fetchurl {
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz";
2020-10-17 21:12:17 +02:00
sha256 = "1c4fcf8jzgd6636wv903r5msc9z5l56l2i4k93kvb2zvg7qj014w";
2019-04-23 21:25:46 +02:00
};
buildCommand = ''
mkdir -p $out/share/bitwarden_rs/
cd $out/share/bitwarden_rs/
2019-04-23 21:25:46 +02:00
tar xf $src
mv web-vault vault
2019-04-23 21:25:46 +02:00
'';
2020-06-06 12:55:50 +02:00
passthru.tests = nixosTests.bitwarden;
2019-04-23 21:25:46 +02:00
meta = with stdenv.lib; {
description = "Integrates the web vault into bitwarden_rs";
2020-02-19 13:26:48 +01:00
homepage = "https://github.com/dani-garcia/bw_web_builds";
2019-04-23 21:25:46 +02:00
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ msteen ];
};
}