gnostic: init at 0.6.8

Fixes #142070
This commit is contained in:
Colin Arnott 2022-11-30 15:56:34 +00:00
parent 72fad62739
commit a7e188a80f
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gnostic";
version = "0.6.8";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
hash = "sha256-+/KZmwVV3pnbv3JNwNk9Q2gcTyDxV1tgsDzW5IYnnds=";
};
vendorHash = "sha256-OoI1/OPBgAy4AysPPSCXGmf0S4opzxO7ZrwBsQYImwU=";
# some tests are broken and others require network access
doCheck = false;
meta = with lib; {
homepage = "https://github.com/google/gnostic";
description = "A compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks";
changelog = "https://github.com/google/gnostic/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ urandom ];
};
}

View file

@ -14426,6 +14426,8 @@ with pkgs;
glslang = callPackage ../development/compilers/glslang { };
gnostic = callPackage ../development/compilers/gnostic {};
go-junit-report = callPackage ../development/tools/go-junit-report { };
gobang = callPackage ../development/tools/database/gobang {