2019-04-23 19:25:46 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bitwarden_rs-vault";
|
2020-07-08 03:28:04 +00:00
|
|
|
version = "2.15.1";
|
2019-04-23 19:25:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz";
|
2020-07-08 03:28:04 +00:00
|
|
|
sha256 = "1wvpg2awdbpbzhxhrf1iv1mjjc1ah54kswnznc7w5zbh9512dyx8";
|
2019-04-23 19:25:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildCommand = ''
|
2020-03-08 15:41:00 +00:00
|
|
|
mkdir -p $out/share/bitwarden_rs/
|
|
|
|
cd $out/share/bitwarden_rs/
|
2019-04-23 19:25:46 +00:00
|
|
|
tar xf $src
|
2020-03-08 15:41:00 +00:00
|
|
|
mv web-vault vault
|
2019-04-23 19:25:46 +00: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 19:25:46 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ msteen ];
|
|
|
|
};
|
|
|
|
}
|