tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
john: remove use of `with lib;`
langsjo
3 months ago
699cb82f
a048f59f
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
jo
john
package.nix
+7
-4
pkgs/by-name/jo/john/package.nix
···
130
130
done
131
131
'';
132
132
133
133
-
meta = with lib; {
133
133
+
meta = {
134
134
description = "John the Ripper password cracker";
135
135
-
license = [ licenses.gpl2Plus ] ++ lib.optionals enableUnfree [ licenses.unfreeRedistributable ];
135
135
+
license = [
136
136
+
lib.licenses.gpl2Plus
137
137
+
]
138
138
+
++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ];
136
139
homepage = "https://github.com/openwall/john/";
137
137
-
maintainers = with maintainers; [
140
140
+
maintainers = with lib.maintainers; [
138
141
offline
139
142
matthewbauer
140
143
cherrykitten
141
144
];
142
142
-
platforms = platforms.unix;
145
145
+
platforms = lib.platforms.unix;
143
146
};
144
147
}