Merge pull request #142672 from truh/update/plantuml-server_1.2021.12

plantuml-server: 1.2021.7 -> 1.2021.12
This commit is contained in:
Mario Rodas 2021-10-30 04:44:16 -05:00 committed by GitHub
commit e49cd51ebc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -58,8 +58,8 @@ in
graphvizPackage = mkOption {
type = types.package;
default = pkgs.graphviz_2_32;
defaultText = literalExpression "pkgs.graphviz_2_32";
default = pkgs.graphviz;
defaultText = literalExpression "pkgs.graphviz";
description = "Package containing the dot executable.";
};

View File

@ -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