2021-04-05 15:23:46 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "go-md2man";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "2.0.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = null;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "cpuguy83";
|
|
|
|
repo = "go-md2man";
|
2023-10-19 13:55:26 +00:00
|
|
|
sha256 = "sha256-bgAuN+pF9JekCQ/Eg4ph3WDv3RP8MB/10GDp1JMp9Kg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Go tool to convert markdown to man pages";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://github.com/cpuguy83/go-md2man";
|
|
|
|
maintainers = with maintainers; [offline];
|
|
|
|
};
|
|
|
|
}
|