1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 11:01:07 +01:00
Files
niveum/packages/man-pdf.nix

7 lines
171 B
Nix
Raw Normal View History

2019-07-09 09:31:17 +02:00
{ writeShellScriptBin, texlive }:
writeShellScriptBin "man-pdf" ''
for program in "$@"; do
man -t "$program" | ${texlive.combined.scheme-basic}/bin/ps2pdf
2019-08-18 19:15:54 +02:00
done
2019-07-09 09:31:17 +02:00
''