summary refs log tree commit diff
path: root/pkgs/tools/misc/umlet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/umlet/default.nix')
-rw-r--r--pkgs/tools/misc/umlet/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/tools/misc/umlet/default.nix b/pkgs/tools/misc/umlet/default.nix
new file mode 100644
index 00000000000..04f3a31aa48
--- /dev/null
+++ b/pkgs/tools/misc/umlet/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchurl, jre, unzip }:
+
+stdenv.mkDerivation rec {
+  major = "13";
+  minor = "2";
+  version = "${major}.${minor}";
+  name = "umlet-${version}";
+
+  src = fetchurl {
+    url = "http://www.umlet.com/umlet_${major}_${minor}/umlet_${version}.zip";
+    sha256 = "19jngb2sr212lh3yi43bqq2skhd9cxa8yfbfc3i6fbm2v0b7i2xf";
+  };
+
+  buildInputs = [ unzip ];
+
+  installPhase = ''
+    mkdir -p "$out/bin"
+    mkdir -p "$out/lib"
+
+    cp -R * "$out/lib"
+
+    cat > "$out/bin/umlet" << EOF
+    #!${stdenv.shell}
+
+    programDir="$out/lib"
+    cd "\$programDir"
+    if [ \$# -eq 1 ]
+     then "${jre}/bin/java" -jar "\$programDir/umlet.jar" -filename="\$1"
+     else "${jre}/bin/java" -jar "\$programDir/umlet.jar" "\$@"
+    fi
+
+    EOF
+    chmod a+x "$out/bin/umlet"
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Free, open-source UML tool with a simple user interface";
+    longDescription = ''
+      UMLet is a free, open-source UML tool with a simple user interface:
+      draw UML diagrams fast, produce sequence and activity diagrams from
+      plain text, export diagrams to eps, pdf, jpg, svg, and clipboard,
+      share diagrams using Eclipse, and create new, custom UML elements.
+      UMLet runs stand-alone or as Eclipse plug-in on Windows, OS X and
+      Linux.
+    '';
+    homepage = http://www.umlet.com;
+    license = licenses.gpl3;
+    maintainers = [ maintainers.DamienCassou ];
+    platforms = platforms.all;
+  };
+}