2018-07-21 02:44:44 +02:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-09-10 00:36:36 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "go-md2man";
|
2020-04-12 09:26:12 +02:00
|
|
|
version = "2.0.0";
|
2016-09-10 00:36:36 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/cpuguy83/go-md2man";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "cpuguy83";
|
|
|
|
repo = "go-md2man";
|
2020-04-12 09:26:12 +02:00
|
|
|
sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv";
|
2016-09-10 00:36:36 +02:00
|
|
|
};
|
|
|
|
|
2020-04-12 09:26:12 +02:00
|
|
|
meta = with lib; {
|
2016-09-10 00:36:36 +02:00
|
|
|
description = "Go tool to convert markdown to man pages";
|
|
|
|
license = licenses.mit;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/cpuguy83/go-md2man";
|
2016-09-10 00:36:36 +02:00
|
|
|
maintainers = with maintainers; [offline];
|
2016-09-30 16:44:44 +02:00
|
|
|
platforms = platforms.unix;
|
2016-09-10 00:36:36 +02:00
|
|
|
};
|
|
|
|
}
|