File tree Expand file tree Collapse file tree 1 file changed +17
-12
lines changed
pkgs/by-name/bi/bitwarden-cli Expand file tree Collapse file tree 1 file changed +17
-12
lines changed Original file line number Diff line number Diff line change 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 ,
10
11
} :
11
12
12
13
buildNpmPackage rec {
@@ -52,16 +53,20 @@ buildNpmPackage rec {
52
53
vaultwarden = nixosTests . vaultwarden . sqlite ;
53
54
} ;
54
55
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
+ ] ;
56
61
} ;
57
62
} ;
58
63
59
- meta = with lib ; {
64
+ meta = {
60
65
changelog = "https://github.com/bitwarden/clients/releases/tag/${ src . rev } " ;
61
66
description = "Secure and free password manager for all of your devices" ;
62
67
homepage = "https://bitwarden.com" ;
63
68
license = lib . licenses . gpl3Only ;
64
69
mainProgram = "bw" ;
65
- maintainers = with maintainers ; [ dotlambda ] ;
70
+ maintainers = with lib . maintainers ; [ dotlambda ] ;
66
71
} ;
67
72
}
You can’t perform that action at this time.
0 commit comments