1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "http://mdocml.bsd.lv/pod2mdoc/snapshots/pod2mdoc-${version}.tgz";
9 sha256 = "0nwa9zv9gmfi5ysz1wfm60kahc7nv0133n3dfc2vh2y3gj8mxr4f";
14 mkdir -p $out/share/man/man1
15 install -m 0755 pod2mdoc $out/bin
16 install -m 0444 pod2mdoc.1 $out/share/man/man1
20 homepage = "http://mdocml.bsd.lv/";
21 description = "converter from POD into mdoc";
22 license = licenses.isc;
23 platforms = platforms.all;
24 maintainers = with maintainers; [ ramkromberg ];
25 mainProgram = "pod2mdoc";