29 lines
787 B
Nix
29 lines
787 B
Nix
{ lib, stdenv, fetchurl, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitwarden_rs-vault";
|
|
version = "2.19.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz";
|
|
sha256 = "sha256:0yrk2b2d5sld4z60siacafdz95gqikcv4snzd6hwhq1l6kz151az";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/share/bitwarden_rs/
|
|
cd $out/share/bitwarden_rs/
|
|
tar xf $src
|
|
mv web-vault vault
|
|
'';
|
|
|
|
passthru.tests = nixosTests.bitwarden;
|
|
|
|
meta = with lib; {
|
|
description = "Integrates the web vault into bitwarden_rs";
|
|
homepage = "https://github.com/dani-garcia/bw_web_builds";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ msteen mic92 ];
|
|
};
|
|
}
|