nixpkgs/pkgs/tools/misc/enumer/default.nix

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

27 lines
603 B
Nix
Raw Normal View History

2022-11-13 18:43:24 -05:00
{ lib
, buildGoModule
, fetchFromGitHub
2022-11-13 18:43:24 -05:00
}:
buildGoModule rec {
pname = "enumer";
2023-10-18 11:27:24 -04:00
version = "1.5.9";
2022-11-13 18:43:24 -05:00
src = fetchFromGitHub {
owner = "dmarkham";
repo = "enumer";
rev = "refs/tags/v${version}";
2023-10-18 11:27:24 -04:00
hash = "sha256-NYL36GBogFM48IgIWhFa1OLZNUeEi0ppS6KXybnPQks=";
2022-11-13 18:43:24 -05:00
};
2023-10-18 11:27:24 -04:00
vendorHash = "sha256-CJCay24FlzDmLjfZ1VBxih0f+bgBNu+Xn57QgWT13TA=";
2022-11-13 18:43:24 -05:00
meta = with lib; {
description = "Go tool to auto generate methods for enums";
homepage = "https://github.com/dmarkham/enumer";
license = licenses.bsd2;
maintainers = with maintainers; [ hexa ];
2023-11-26 20:17:53 -05:00
mainProgram = "enumer";
2022-11-13 18:43:24 -05:00
};
}