summary refs log blame commit diff
path: root/pkgs/development/tools/pigeon/default.nix
blob: 31d668eb853bdfbba40abb0f5723211ff7afdc18 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
 


                    



                         

                                                                   

    
                                                                       






                        






                                                    
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "pigeon";
  version = "1.1.0";

  src = fetchFromGitHub {
    owner = "mna";
    repo = "pigeon";
    rev = "v${version}";
    sha256 = "sha256-0Cp/OnFvVZj9UZgl3F5MCzemBaHI4smGWU46VQnhLOg=";
  };

  vendorSha256 = "sha256-JbBXRkxnB7LeeWdBLIQvyjvWo0zZ1EOuEUPXxHWiq+E=";

  proxyVendor = true;

  subPackages = [ "." ];

  doCheck = false;

  meta = {
    homepage = "https://github.com/mna/pigeon";
    description = "A PEG parser generator for Go";
    maintainers = with lib.maintainers; [ zimbatm ];
    license = with lib.licenses; [ bsd3 ];
  };
}