biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / go-md2man / default.nix
blobee8b8d38b5651b948dd3b348db203572832ab262
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "go-md2man";
5   version = "2.0.4";
7   vendorHash = "sha256-aMLL/tmRLyGze3RSB9dKnoTv5ZK1eRtgV8fkajWEbU0=";
9   src = fetchFromGitHub {
10     rev = "v${version}";
11     owner = "cpuguy83";
12     repo = "go-md2man";
13     sha256 = "sha256-pQ+H8Psh92KWTang8hK0cHFLomH+4X0rMMilIJUQ4Qc=";
14   };
16   meta = with lib; {
17     description = "Go tool to convert markdown to man pages";
18     mainProgram = "go-md2man";
19     license = licenses.mit;
20     homepage = "https://github.com/cpuguy83/go-md2man";
21     maintainers = with maintainers; [offline];
22   };