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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
stdenv.mkDerivation rec {
2023-02-04 12:29:48 +03:00
version = "1.2023.1";
pname = "plantuml";
src = fetchurl {
url = "https://github.com/plantuml/plantuml/releases/download/v${version}/plantuml-pdf-${version}.jar";
2023-02-04 12:29:48 +03:00
sha256 = "sha256-ObNiuD0le5FOEGvaIr3jl+Lix74Xvpso/YIqyHGGHAs=";
};
2018-10-01 12:15:00 +03:00
nativeBuildInputs = [ makeWrapper ];
2018-10-01 12:15:00 +03:00
buildCommand = ''
install -Dm644 $src $out/lib/plantuml.jar
2018-10-01 12:15:00 +03: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 12:15:00 +03:00
$out/bin/plantuml -help
'';
meta = with lib; {
description = "Draw UML diagrams using a simple and human readable text description";
2020-03-03 00:59:39 +03:00
homepage = "http://plantuml.sourceforge.net/";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2018-10-01 12:15:00 +03:00
# "plantuml -license" says GPLv3 or later
license = licenses.gpl3Plus;
maintainers = with maintainers; [ bjornfor Mogria ];
platforms = platforms.unix;
};
}