biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / umlet / default.nix
blobb9d3e5d3153809ab9e20fdef951a0401109563e8
1 { lib, stdenv, fetchurl, jre, unzip, runtimeShell }:
3 stdenv.mkDerivation {
4   pname = "umlet";
5   version = "15.1.0";
7   src = fetchurl {
8     # NOTE: The download URL breaks consistency - sometimes w/ patch versions
9     # and sometimes w/o. Furthermore, for 15.1.0 they moved everything to the
10     # new /download subfolder.
11     # As releases are very rarely, just modify it by hand..
12     url = "https://www.umlet.com/download/umlet_15_1/umlet-standalone-15.1.zip";
13     hash = "sha256-M6oVWbOmPBTygS+TFkY9PWucFfYLD33suNUuWpFLMIo=";
14   };
16   nativeBuildInputs = [ unzip ];
18   installPhase = ''
19     mkdir -p "$out/bin"
20     mkdir -p "$out/lib"
22     cp -R * "$out/lib"
24     cat > "$out/bin/umlet" << EOF
25     #!${runtimeShell}
27     programDir="$out/lib"
28     cd "\$programDir"
29     if [ \$# -eq 1 ]
30      then "${jre}/bin/java" -jar "\$programDir/umlet.jar" -filename="\$1"
31      else "${jre}/bin/java" -jar "\$programDir/umlet.jar" "\$@"
32     fi
34     EOF
35     chmod a+x "$out/bin/umlet"
36   '';
38   meta = with lib; {
39     description = "Free, open-source UML tool with a simple user interface";
40     longDescription = ''
41       UMLet is a free, open-source UML tool with a simple user interface:
42       draw UML diagrams fast, produce sequence and activity diagrams from
43       plain text, export diagrams to eps, pdf, jpg, svg, and clipboard,
44       share diagrams using Eclipse, and create new, custom UML elements.
45       UMLet runs stand-alone or as Eclipse plug-in on Windows, macOS and
46       Linux.
47     '';
48     homepage = "https://www.umlet.com";
49     sourceProvenance = with sourceTypes; [ binaryBytecode ];
50     license = licenses.gpl3;
51     maintainers = with maintainers; [ oxzi ];
52     platforms = platforms.all;
53     mainProgram = "umlet";
54   };