Skip to content

Commit 0e650fa

Browse files
committed
bitwarden-cli: format with nixfmt-rfc-style
1 parent 83bb856 commit 0e650fa

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

pkgs/by-name/bi/bitwarden-cli/package.nix

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
{ lib
2-
, stdenv
3-
, buildNpmPackage
4-
, nodejs_20
5-
, fetchFromGitHub
6-
, cctools
7-
, nix-update-script
8-
, nixosTests
9-
, xcbuild
1+
{
2+
buildNpmPackage,
3+
cctools,
4+
fetchFromGitHub,
5+
lib,
6+
nix-update-script,
7+
nixosTests,
8+
nodejs_20,
9+
stdenv,
10+
xcbuild,
1011
}:
1112

1213
buildNpmPackage rec {
@@ -52,16 +53,20 @@ buildNpmPackage rec {
5253
vaultwarden = nixosTests.vaultwarden.sqlite;
5354
};
5455
updateScript = nix-update-script {
55-
extraArgs = [ "--commit" "--version=stable" "--version-regex=^cli-v(.*)$" ];
56+
extraArgs = [
57+
"--commit"
58+
"--version=stable"
59+
"--version-regex=^cli-v(.*)$"
60+
];
5661
};
5762
};
5863

59-
meta = with lib; {
64+
meta = {
6065
changelog = "https://github.com/bitwarden/clients/releases/tag/${src.rev}";
6166
description = "Secure and free password manager for all of your devices";
6267
homepage = "https://bitwarden.com";
6368
license = lib.licenses.gpl3Only;
6469
mainProgram = "bw";
65-
maintainers = with maintainers; [ dotlambda ];
70+
maintainers = with lib.maintainers; [ dotlambda ];
6671
};
6772
}

0 commit comments

Comments
 (0)