nixpkgs/pkgs/development/tools/misc/go-md2man/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
557 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-09-10 01:36:36 +03:00
buildGoModule rec {
pname = "go-md2man";
2022-05-26 07:24:50 +03:00
version = "2.0.2";
2016-09-10 01:36:36 +03:00
vendorSha256 = null;
2016-09-10 01:36:36 +03:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "cpuguy83";
repo = "go-md2man";
2022-05-26 07:24:50 +03:00
sha256 = "sha256-C+MaDtvfPYABSC2qoMfZVHe2xX/WtDjp6v/ayFCIGac=";
2016-09-10 01:36:36 +03:00
};
2020-04-12 10:26:12 +03:00
meta = with lib; {
2016-09-10 01:36:36 +03:00
description = "Go tool to convert markdown to man pages";
license = licenses.mit;
homepage = "https://github.com/cpuguy83/go-md2man";
2016-09-10 01:36:36 +03:00
maintainers = with maintainers; [offline];
2016-09-30 17:44:44 +03:00
platforms = platforms.unix;
2016-09-10 01:36:36 +03:00
};
}