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
done
131
'';
132
133
-
meta = with lib; {
134
description = "John the Ripper password cracker";
135
-
license = [ licenses.gpl2Plus ] ++ lib.optionals enableUnfree [ licenses.unfreeRedistributable ];
0
0
0
136
homepage = "https://github.com/openwall/john/";
137
-
maintainers = with maintainers; [
138
offline
139
matthewbauer
140
cherrykitten
141
];
142
-
platforms = platforms.unix;
143
};
144
}
···
130
done
131
'';
132
133
+
meta = {
134
description = "John the Ripper password cracker";
135
+
license = [
136
+
lib.licenses.gpl2Plus
137
+
]
138
+
++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ];
139
homepage = "https://github.com/openwall/john/";
140
+
maintainers = with lib.maintainers; [
141
offline
142
matthewbauer
143
cherrykitten
144
];
145
+
platforms = lib.platforms.unix;
146
};
147
}