mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
23 lines
523 B
Nix
23 lines
523 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-md2man";
|
|
version = "2.0.3";
|
|
|
|
vendorHash = null;
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "cpuguy83";
|
|
repo = "go-md2man";
|
|
sha256 = "sha256-bgAuN+pF9JekCQ/Eg4ph3WDv3RP8MB/10GDp1JMp9Kg=";
|
|
};
|
|
|
|
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];
|
|
};
|
|
}
|