From c7835750e4d7bdd0ce746912ecff358b6fe7d08b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 13 Mar 2025 12:46:44 -0700 Subject: [PATCH] bitwarden-cli: 2025.1.3 -> 2025.2.0 Diff: https://github.com/bitwarden/clients/compare/cli-v2025.1.3...cli-v2025.2.0 Changelog: https://github.com/bitwarden/clients/releases/tag/cli-v2025.2.0 --- pkgs/by-name/bi/bitwarden-cli/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/bi/bitwarden-cli/package.nix b/pkgs/by-name/bi/bitwarden-cli/package.nix index 03e2fcacc00d..9053b614d712 100644 --- a/pkgs/by-name/bi/bitwarden-cli/package.nix +++ b/pkgs/by-name/bi/bitwarden-cli/package.nix @@ -13,13 +13,13 @@ buildNpmPackage rec { pname = "bitwarden-cli"; - version = "2025.1.3"; + version = "2025.2.0"; src = fetchFromGitHub { owner = "bitwarden"; repo = "clients"; - rev = "cli-v${version}"; - hash = "sha256-a8OQ/vQCJSjipLnuNWaWqnAJK+Str6FdHPBTbC04VxA="; + tag = "cli-v${version}"; + hash = "sha256-Ls30yeqMDBA4HjQdnICJy0HVHm7VfZarsKUHn3KTatA="; }; postPatch = '' @@ -29,7 +29,7 @@ buildNpmPackage rec { nodejs = nodejs_20; - npmDepsHash = "sha256-BoHwgv/1QiIfUPCJ3+ZHvbMelngRSEKlbkpBHRtnoP8="; + npmDepsHash = "sha256-V77I2ZzmcCo06vq76lGkRa+NmTEUe2urD0D1HQ/gBJA="; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ cctools @@ -89,12 +89,12 @@ buildNpmPackage rec { }; }; - meta = with lib; { - changelog = "https://github.com/bitwarden/clients/releases/tag/${src.rev}"; + meta = { + changelog = "https://github.com/bitwarden/clients/releases/tag/${src.tag}"; description = "Secure and free password manager for all of your devices"; homepage = "https://bitwarden.com"; license = lib.licenses.gpl3Only; mainProgram = "bw"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; }