mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
26 lines
648 B
Nix
26 lines
648 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "github-markdown-toc-go";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ekalinin";
|
|
repo = "github-markdown-toc.go";
|
|
rev = "v${version}";
|
|
hash = "sha256-tZGAvbC9lrNhtRubCJUkQShRsfCsaAeI6XHhSp4FkS0=";
|
|
};
|
|
|
|
vendorHash = "sha256-K5yb7bnW6eS5UESK9wgNEUwGjB63eJk6+B0jFFiFero=";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ekalinin/github-markdown-toc.go";
|
|
description = "Easy TOC creation for GitHub README.md (in go)";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dannixon ];
|
|
mainProgram = "gh-md-toc";
|
|
};
|
|
}
|