1{
2 lib,
3 stdenv,
4 buildBatExtrasPkg,
5 util-linux,
6}:
7buildBatExtrasPkg {
8 name = "batman";
9 dependencies = lib.optional stdenv.targetPlatform.isLinux util-linux;
10 meta.description = "Read system manual pages (man) using bat as the manual page formatter";
11}