biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / pigeon / default.nix
blob38fcd75f391df80a747b7cfaa3ef8dc23cc81c53
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pigeon";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "mna";
9     repo = "pigeon";
10     rev = "v${version}";
11     sha256 = "sha256-0Cp/OnFvVZj9UZgl3F5MCzemBaHI4smGWU46VQnhLOg=";
12   };
14   vendorHash = "sha256-JbBXRkxnB7LeeWdBLIQvyjvWo0zZ1EOuEUPXxHWiq+E=";
16   proxyVendor = true;
18   subPackages = [ "." ];
20   doCheck = false;
22   meta = {
23     homepage = "https://github.com/mna/pigeon";
24     description = "A PEG parser generator for Go";
25     mainProgram = "pigeon";
26     maintainers = with lib.maintainers; [ zimbatm ];
27     license = with lib.licenses; [ bsd3 ];
28   };