2022-04-19 17:28:09 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-08-28 07:47:17 +00:00
|
|
|
|
2022-04-19 17:28:09 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "pigeon";
|
|
|
|
version = "1.1.0";
|
2019-08-28 07:47:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mna";
|
|
|
|
repo = "pigeon";
|
2022-04-19 17:28:09 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-0Cp/OnFvVZj9UZgl3F5MCzemBaHI4smGWU46VQnhLOg=";
|
2019-08-28 07:47:17 +00:00
|
|
|
};
|
|
|
|
|
2022-07-04 14:27:00 +00:00
|
|
|
vendorSha256 = "sha256-JbBXRkxnB7LeeWdBLIQvyjvWo0zZ1EOuEUPXxHWiq+E=";
|
2022-04-19 17:28:09 +00:00
|
|
|
|
|
|
|
proxyVendor = true;
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-08-28 07:47:17 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mna/pigeon";
|
|
|
|
description = "A PEG parser generator for Go";
|
|
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|