My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/texi2mdoc/default.nix

21 lines
541 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "texi2mdoc";
version = "0.1.2";
src = fetchurl {
url = "http://mdocml.bsd.lv/texi2mdoc/snapshots/${pname}-${version}.tgz";
sha256 = "1zjb61ymwfkw6z5g0aqmsn6qpw895zdxv7fv3059gj3wqa3zsibs";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "http://mdocml.bsd.lv/";
description = "converter from Texinfo into mdoc";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ ramkromberg ];
};
}