2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
|
2013-10-14 18:27:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-10-14 10:14:54 +01:00
|
|
|
version = "1.2021.12";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "plantuml";
|
2013-10-14 18:27:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-06 20:05:30 +01:00
|
|
|
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
|
2021-10-14 10:14:54 +01:00
|
|
|
sha256 = "sha256-t9IQ1D2QJHrQmt/0EWofrqSf6o2YMUdpxFILsV5muog=";
|
2013-10-14 18:27:11 +01:00
|
|
|
};
|
|
|
|
|
2018-10-01 10:15:00 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2013-10-14 18:27:11 +01:00
|
|
|
|
2018-10-01 10:15:00 +01:00
|
|
|
buildCommand = ''
|
|
|
|
install -Dm644 $src $out/lib/plantuml.jar
|
2013-10-14 18:27:11 +01:00
|
|
|
|
2018-10-01 10:15:00 +01:00
|
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/plantuml \
|
|
|
|
--argv0 plantuml \
|
|
|
|
--set GRAPHVIZ_DOT ${graphviz}/bin/dot \
|
|
|
|
--add-flags "-jar $out/lib/plantuml.jar"
|
2013-10-14 18:27:11 +01:00
|
|
|
|
2018-10-01 10:15:00 +01:00
|
|
|
$out/bin/plantuml -help
|
2013-10-14 18:27:11 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-10-14 18:27:11 +01:00
|
|
|
description = "Draw UML diagrams using a simple and human readable text description";
|
2020-03-02 21:59:39 +00:00
|
|
|
homepage = "http://plantuml.sourceforge.net/";
|
2018-10-01 10:15:00 +01:00
|
|
|
# "plantuml -license" says GPLv3 or later
|
2013-10-14 18:27:11 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2021-01-06 08:07:08 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor Mogria ];
|
2018-03-30 23:30:39 +01:00
|
|
|
platforms = platforms.unix;
|
2013-10-14 18:27:11 +01:00
|
|
|
};
|
|
|
|
}
|