nixpkgs/pkgs/tools/networking/oapi-codegen/default.nix

26 lines
617 B
Nix
Raw Normal View History

2021-03-26 00:00:38 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "oapi-codegen";
2021-08-15 15:23:45 +02:00
version = "1.8.2";
2021-03-26 00:00:38 +01:00
src = fetchFromGitHub {
owner = "deepmap";
repo = pname;
rev = "v${version}";
2021-08-15 15:23:45 +02:00
sha256 = "sha256-8hyRuGKspWqv+uBeSz4i12Grl83EQVPWB1weEVf9yhA=";
2021-03-26 00:00:38 +01:00
};
2021-08-15 15:23:45 +02:00
vendorSha256 = "sha256-YCZzIsu1mMAAjLGHISrDkfY4Lx0az2SZV8bnZOMalx8=";
2021-03-26 00:00:38 +01:00
# Tests use network
doCheck = false;
meta = with lib; {
description = "Go client and server OpenAPI 3 generator";
homepage = "https://github.com/deepmap/oapi-codegen";
license = licenses.asl20;
maintainers = [ maintainers.j4m3s ];
};
}