about summary refs log tree commit diff
path: root/pkgs/tools/misc/plantuml-server
diff options
context:
space:
mode:
authorJakob Klepp <jakob-nixos@truh.in>2021-10-23 17:21:56 +0200
committerJakob Klepp <jakob-nixos@truh.in>2021-10-23 17:21:56 +0200
commit536d114230077a231e2e537e3301be02257b5214 (patch)
tree6988a5044d8f1983c47ddde3f7e2e2e753795bf1 /pkgs/tools/misc/plantuml-server
parent663a0f328ff5388c98ebe58715b72cf4b0f546ac (diff)
plantuml-server: 1.2021.7 -> 1.2021.12
Diffstat (limited to 'pkgs/tools/misc/plantuml-server')
-rw-r--r--pkgs/tools/misc/plantuml-server/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/plantuml-server/default.nix b/pkgs/tools/misc/plantuml-server/default.nix
index eef6cdc11d5f6..6afaf0fbb3483 100644
--- a/pkgs/tools/misc/plantuml-server/default.nix
+++ b/pkgs/tools/misc/plantuml-server/default.nix
@@ -1,13 +1,13 @@
 { lib, stdenv, fetchFromGitHub, maven, jdk8_headless }:
 
 let
-  version = "1.2021.7";
+  version = "1.2021.12";
 
   src = fetchFromGitHub {
     owner = "plantuml";
     repo = "plantuml-server";
     rev = "v${version}";
-    sha256 = "sha256-kY7b3ocm1zudGIf72MNMZDUG2t2FFqucRr3kRaFv7mo=";
+    sha256 = "sha256:016mrs4djbaid1ma5922dvq372pphbzzmjzsjalj2dqp60538xll";
   };
 
   # perform fake build to make a fixed-output derivation out of the files downloaded from maven central
@@ -28,7 +28,7 @@ let
     installPhase = ''find $out/.m2 -type f -regex '.+\(\.lastUpdated\|resolver-status\.properties\|_remote\.repositories\)' -delete'';
     outputHashAlgo = "sha256";
     outputHashMode = "recursive";
-    outputHash = "sha256-HzT5rBycrd48KskWKAGtkMKdCDQ8NPYADVWZh8K0ll4=";
+    outputHash = "sha256:12w1iw9c5j7y9hhaip07j3aszjiiakkww1v3zszlj15fj8jgqyf2";
   };
 in