Merge pull request #117625 from j4m3s-s/add-oapi-codegen
oapi-codegen: init at 1.5.6
This commit is contained in:
commit
97101da6b0
25
pkgs/tools/networking/oapi-codegen/default.nix
Normal file
25
pkgs/tools/networking/oapi-codegen/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "oapi-codegen";
|
||||
version = "1.5.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deepmap";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-edIm1O+LQdmKhH8/5WuSsxVtOcf3VlkObGjIY+30mms=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-lhWnPZavtBEa4A76rvr0xw3L5W6HYK1Uw+PW8z8gWuU=";
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -6865,6 +6865,8 @@ in
|
||||
|
||||
nzbhydra2 = callPackage ../servers/nzbhydra2 { };
|
||||
|
||||
oapi-codegen = callPackage ../tools/networking/oapi-codegen { };
|
||||
|
||||
oathToolkit = callPackage ../tools/security/oath-toolkit { };
|
||||
|
||||
oatpp = callPackage ../development/libraries/oatpp { };
|
||||
|
Loading…
Reference in New Issue
Block a user