1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/tools/misc/plantuml/default.nix

35 lines
975 B
Nix
Raw Normal View History

2018-10-01 10:15:00 +01:00
{ stdenv, fetchurl, makeWrapper, jre, graphviz }:
stdenv.mkDerivation rec {
2020-01-22 10:15:38 +00:00
version = "1.2020.0";
pname = "plantuml";
src = fetchurl {
2017-10-06 20:05:30 +01:00
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
2020-01-22 10:15:38 +00:00
sha256 = "1ibhyj51wib2d8q7zyjbzp65hqm0a1jczqwqdw3834zdmrb2v7bs";
};
2018-10-01 10:15:00 +01:00
nativeBuildInputs = [ makeWrapper ];
2018-10-01 10:15:00 +01:00
buildCommand = ''
install -Dm644 $src $out/lib/plantuml.jar
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"
2018-10-01 10:15:00 +01:00
$out/bin/plantuml -help
'';
meta = with stdenv.lib; {
description = "Draw UML diagrams using a simple and human readable text description";
homepage = http://plantuml.sourceforge.net/;
2018-10-01 10:15:00 +01:00
# "plantuml -license" says GPLv3 or later
license = licenses.gpl3Plus;
2018-10-01 10:15:00 +01:00
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.unix;
};
}