5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
22 lines
523 B
Nix
22 lines
523 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-md2man";
|
|
version = "2.0.2";
|
|
|
|
vendorHash = null;
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "cpuguy83";
|
|
repo = "go-md2man";
|
|
sha256 = "sha256-C+MaDtvfPYABSC2qoMfZVHe2xX/WtDjp6v/ayFCIGac=";
|
|
};
|
|
|
|
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];
|
|
};
|
|
}
|