3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/bitwarden_rs/vault.nix

27 lines
718 B
Nix
Raw Normal View History

2019-04-23 20:25:46 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "bitwarden_rs-vault";
2020-05-24 18:17:03 +01:00
version = "2.14.0";
2019-04-23 20:25:46 +01:00
src = fetchurl {
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz";
2020-05-24 18:17:03 +01:00
sha256 = "16620md9lsxw6s0qzv5vj9kfkgxnlaxfrax6s2h3h39skza80x2c";
2019-04-23 20:25:46 +01:00
};
buildCommand = ''
mkdir -p $out/share/bitwarden_rs/
cd $out/share/bitwarden_rs/
2019-04-23 20:25:46 +01:00
tar xf $src
mv web-vault vault
2019-04-23 20:25:46 +01:00
'';
meta = with stdenv.lib; {
description = "Integrates the web vault into bitwarden_rs";
2020-02-19 12:26:48 +00:00
homepage = "https://github.com/dani-garcia/bw_web_builds";
2019-04-23 20:25:46 +01:00
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ msteen ];
};
}