mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
33 lines
853 B
Nix
33 lines
853 B
Nix
{ lib, stdenv, fetchurl, nixosTests }:
|
|
|
|
let
|
|
version = "1.2023.13";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "plantuml-server";
|
|
inherit version;
|
|
src = fetchurl {
|
|
url = "https://github.com/plantuml/plantuml-server/releases/download/v${version}/plantuml-v${version}.war";
|
|
sha256 = "sha256-8MfInkDJ57Usm4KTESwEig/X9xfoxXTf+oA9F3bgMT0=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
installPhase = ''
|
|
mkdir -p "$out/webapps"
|
|
cp "$src" "$out/webapps/plantuml.war"
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) plantuml-server;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A web application to generate UML diagrams on-the-fly.";
|
|
homepage = "https://plantuml.com/";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ truh ];
|
|
};
|
|
}
|