mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
db5433a56b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bitwarden_rs-vault/versions
26 lines
703 B
Nix
26 lines
703 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitwarden_rs-vault";
|
|
version = "2.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz";
|
|
sha256 = "064dxfplqn67grpx03ryzshwmr7s00w4mll0hk0anddviwvd8r1n";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/share/bitwarden_rs/vault
|
|
cd $out/share/bitwarden_rs/vault
|
|
tar xf $src
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Integrates the web vault into bitwarden_rs";
|
|
homepage = https://github.com/dani-garcia/bw_web_builds;
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ msteen ];
|
|
};
|
|
}
|