12 lines
264 B
Nix
12 lines
264 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
buildBatExtrasPkg,
|
||
|
|
util-linux,
|
||
|
|
}:
|
||
|
|
buildBatExtrasPkg {
|
||
|
|
name = "batman";
|
||
|
|
dependencies = lib.optional stdenv.targetPlatform.isLinux util-linux;
|
||
|
|
meta.description = "Read system manual pages (man) using bat as the manual page formatter";
|
||
|
|
}
|