Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / compilers / gnostic / default.nix
blob082cf4da2af99a9dced2ec6e8db666049f8e5f83
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gnostic";
5   version = "0.7.0";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-Wpe+rK4XMfMZYhR1xTEr0nsEjRGkSDA7aiLeBbGcRpA=";
12   };
14   vendorHash = "sha256-Wyv5czvD3IwE236vlAdq8I/DnhPXxdbwZtUhun+97x4=";
16   # some tests are broken and others require network access
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/google/gnostic";
21     description = "A compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks";
22     changelog = "https://github.com/google/gnostic/releases/tag/v${version}";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ urandom ];
25   };