bitwarden-cli 2024.2.0 -> 2024.2.1 https://repology.org/project/bitwarden-cli/versions attrpath: bitwarden-cli Checking auto update branch... No auto update branch exists Old version 2024.2.0" not present in master derivation file with contents: { lib , stdenv , buildNpmPackage , nodejs_18 , fetchFromGitHub , python3 , darwin , nixosTests }: buildNpmPackage rec { pname = "bitwarden-cli"; version = "2024.2.1"; src = fetchFromGitHub { owner = "bitwarden"; repo = "clients"; rev = "cli-v${version}"; hash = "sha256-g9enDEIdVj9R3xkx5qllf7aTDa6F+MvozhwbJn9w/VY="; }; nodejs = nodejs_18; npmDepsHash = "sha256-fkoI8a8iVMWxtXAj5zNg2xwK/ZPyRZGPo7rnxHpKV7k="; nativeBuildInputs = [ python3 ] ++ lib.optionals stdenv.isDarwin [ darwin.cctools ]; makeCacheWritable = true; env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; npmBuildScript = "build:prod"; npmWorkspace = "apps/cli"; npmFlags = [ "--legacy-peer-deps" ]; passthru.tests = { vaultwarden = nixosTests.vaultwarden.sqlite; }; meta = with lib; { changelog = "https://github.com/bitwarden/clients/releases/tag/${src.rev}"; description = "A secure and free password manager for all of your devices"; homepage = "https://bitwarden.com"; license = lib.licenses.gpl3Only; mainProgram = "bw"; maintainers = with maintainers; [ dotlambda ]; }; }