about summary refs log tree commit diff
path: root/pkgs/tools/misc/plantuml
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-28 16:43:14 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-09-28 16:43:14 +0000
commit26c8c98d9d3e6d05e9a4e0471f78f964fc0183f4 (patch)
treebf21f41d7da333f695e5b50dff1211292c40123b /pkgs/tools/misc/plantuml
parentbc71a15e46269cafe7f702946ce2ab232d4df448 (diff)
plantuml: 1.2022.8 -> 1.2022.10
Diffstat (limited to 'pkgs/tools/misc/plantuml')
-rw-r--r--pkgs/tools/misc/plantuml/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix
index f023c58bd0e0c..39ebe69d5e93a 100644
--- a/pkgs/tools/misc/plantuml/default.nix
+++ b/pkgs/tools/misc/plantuml/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
 
 stdenv.mkDerivation rec {
-  version = "1.2022.8";
+  version = "1.2022.10";
   pname = "plantuml";
 
   src = fetchurl {
     url = "https://github.com/plantuml/plantuml/releases/download/v${version}/plantuml-pdf-${version}.jar";
-    sha256 = "sha256-9K9d7dQnMFTq1zpZU2t0NIhzQVIyk8b6PnI0cRJJ5t0=";
+    sha256 = "sha256-/I4wRcnF3Gad0Wr9aMe3CCAmAUODHSnDDAexVwiHE2E=";
   };
 
   nativeBuildInputs = [ makeWrapper ];