nixpkgs/pkgs/tools/misc/plantuml/default.nix

35 lines
981 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
stdenv.mkDerivation rec {
2021-06-04 21:48:38 +00:00
version = "1.2021.7";
pname = "plantuml";
src = fetchurl {
2017-10-06 19:05:30 +00:00
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
2021-06-04 21:48:38 +00:00
sha256 = "sha256-2hQIwUpkxLHGG+kx8AekSKJ1qO8inL8xnko0dlLC1Kg=";
};
2018-10-01 09:15:00 +00:00
nativeBuildInputs = [ makeWrapper ];
2018-10-01 09:15:00 +00:00
buildCommand = ''
install -Dm644 $src $out/lib/plantuml.jar
2018-10-01 09:15:00 +00: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"
2018-10-01 09:15:00 +00:00
$out/bin/plantuml -help
'';
meta = with lib; {
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 09:15:00 +00:00
# "plantuml -license" says GPLv3 or later
license = licenses.gpl3Plus;
maintainers = with maintainers; [ bjornfor Mogria ];
platforms = platforms.unix;
};
}