summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2022-03-20 16:17:40 +0100
committerGitHub <noreply@github.com>2022-03-20 16:17:40 +0100
commit3d41c5901122c7eff18422567bd3f124fef83563 (patch)
tree7e00b9dd1457811f465c69cc4249d923d3c9b006 /pkgs/tools
parent1c36a4620a4afdbdaeffc175e71d0861270f2a35 (diff)
parent2aa66e4e5322066a103871ac456c65024dd6a321 (diff)
downloadnixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar.gz
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar.bz2
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar.lz
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar.xz
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.tar.zst
nixpkgs-3d41c5901122c7eff18422567bd3f124fef83563.zip
Merge pull request #164750 from MMesch/mmesch/update-openapi-generator-cli-unstable
openapi-generator-cli-unstable: 6.0.0-2021-01-18 -> 6.0.0-2022-03-18
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/openapi-generator-cli/unstable.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/openapi-generator-cli/unstable.nix b/pkgs/tools/networking/openapi-generator-cli/unstable.nix
index 33eb33e10b0..9af28b3e09e 100644
--- a/pkgs/tools/networking/openapi-generator-cli/unstable.nix
+++ b/pkgs/tools/networking/openapi-generator-cli/unstable.nix
@@ -1,7 +1,7 @@
 { callPackage, lib, stdenv, fetchurl, jre, makeWrapper }:
 
 let this = stdenv.mkDerivation rec {
-  version = "6.0.0-2021-01-18";  # Also update the fetchurl link
+  version = "6.0.0-2022-03-18";  # Also update the fetchurl link
   pname = "openapi-generator-cli";
 
   jarfilename = "${pname}-${version}.jar";
@@ -11,8 +11,8 @@ let this = stdenv.mkDerivation rec {
   ];
 
   src = fetchurl {
-    url = "https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/6.0.0-SNAPSHOT/openapi-generator-cli-6.0.0-20210118.082537-4.jar";
-    sha256 = "1ji3yw9dp4srlgqxvb21vrcp2bzj4himxsmp8l8zid9nxsc1m71x";
+    url = "https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/6.0.0-SNAPSHOT/openapi-generator-cli-6.0.0-20220318.042704-93.jar";
+    sha256 = "1h126kpbnpbrsnjrxb09hzb796dwl4g58d6wrh1hhv8svwy5p0bl";
   };
 
   dontUnpack = true;