Unverified Commit 254c56c8 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #231606 from r-ryantm/auto-update/openapi-generator-cli

openapi-generator-cli: 6.5.0 -> 6.6.0
parents 50b448a7 2e121a25
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
{ callPackage, lib, stdenv, fetchurl, jre, makeWrapper }:

let this = stdenv.mkDerivation rec {
  version = "6.5.0";
  version = "6.6.0";
  pname = "openapi-generator-cli";

  jarfilename = "${pname}-${version}.jar";
@@ -12,7 +12,7 @@ let this = stdenv.mkDerivation rec {

  src = fetchurl {
    url = "mirror://maven/org/openapitools/${pname}/${version}/${jarfilename}";
    sha256 = "sha256-8Y13HpjyxbsWnR0ZYd5PlIZtKQGrweFhd91+kpmDRyE=";
    sha256 = "sha256-lxj/eETolGLHXc2bIKNRNvbbJXv+G4dNseMALpneRgk=";
  };

  dontUnpack = true;
@@ -31,9 +31,10 @@ let this = stdenv.mkDerivation rec {
  meta = with lib; {
    description = "Allows generation of API client libraries (SDK generation), server stubs and documentation automatically given an OpenAPI Spec";
    homepage = "https://github.com/OpenAPITools/openapi-generator";
    changelog = "https://github.com/OpenAPITools/openapi-generator/releases/tag/v${version}";
    sourceProvenance = with sourceTypes; [ binaryBytecode ];
    license = licenses.asl20;
    maintainers = [ maintainers.shou ];
    maintainers = with maintainers; [ shou ];
  };

  passthru.tests.example = callPackage ./example.nix {