about summary refs log tree commit diff
path: root/pkgs/tools/networking/openapi-generator-cli
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-04-16 07:12:48 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-04-16 07:12:48 +0000
commit05f87ea0ee0a90436202a885a3687525d0bcfec0 (patch)
tree4ed36cc325071397863a904196bfe7014e3d578c /pkgs/tools/networking/openapi-generator-cli
parent182da0a77c33038faae2eb70b788c350fcb0affe (diff)
openapi-generator-cli: 6.4.0 -> 6.5.0
Diffstat (limited to 'pkgs/tools/networking/openapi-generator-cli')
-rw-r--r--pkgs/tools/networking/openapi-generator-cli/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/openapi-generator-cli/default.nix b/pkgs/tools/networking/openapi-generator-cli/default.nix
index 70496caf992cd..0963431900420 100644
--- a/pkgs/tools/networking/openapi-generator-cli/default.nix
+++ b/pkgs/tools/networking/openapi-generator-cli/default.nix
@@ -1,7 +1,7 @@
 { callPackage, lib, stdenv, fetchurl, jre, makeWrapper }:
 
 let this = stdenv.mkDerivation rec {
-  version = "6.4.0";
+  version = "6.5.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-Na6tMA4MlGn72dMM9G9BU4l9yygpEgkcpOySEtzp0VE=";
+    sha256 = "sha256-8Y13HpjyxbsWnR0ZYd5PlIZtKQGrweFhd91+kpmDRyE=";
   };
 
   dontUnpack = true;