forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
976 B
Nix
35 lines
976 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2020.22";
|
|
pname = "plantuml";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
|
|
sha256 = "10s2a5z903k1nhq6zdvj4wfms5ma4ldhq9330nnnkdzhbxdp14yx";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
install -Dm644 $src $out/lib/plantuml.jar
|
|
|
|
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"
|
|
|
|
$out/bin/plantuml -help
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Draw UML diagrams using a simple and human readable text description";
|
|
homepage = "http://plantuml.sourceforge.net/";
|
|
# "plantuml -license" says GPLv3 or later
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|