2022-03-30 09:31:56 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-12-25 13:55:36 +00:00
|
|
|
|
|
|
|
let
|
2022-11-04 12:27:35 +00:00
|
|
|
version = "1.2022.12";
|
2020-12-25 13:55:36 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "plantuml-server";
|
|
|
|
inherit version;
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/plantuml/plantuml-server/releases/download/v${version}/plantuml-v${version}.war";
|
2022-11-04 12:27:35 +00:00
|
|
|
sha256 = "sha256-H05/1Em9aTRLhI5vo119JLnuKJlK6/ZLu0v/wU0fPLQ=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
2020-12-25 13:55:36 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
dontUnpack = true;
|
2020-12-25 13:55:36 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/webapps"
|
2022-03-30 09:31:56 +00:00
|
|
|
cp "$src" "$out/webapps/plantuml.war"
|
2020-12-25 13:55:36 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-25 13:55:36 +00:00
|
|
|
description = "A web application to generate UML diagrams on-the-fly.";
|
|
|
|
homepage = "https://plantuml.com/";
|
2022-06-16 17:23:12 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2021-05-20 23:08:51 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-12-25 13:55:36 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ truh ];
|
|
|
|
};
|
|
|
|
}
|