Based on <https://www.umlet.com/changes.htm>: - Fix of a pesky, zero-size relation bug - log4j mitigation (not a problem per se, but had triggered warnings) - Dark mode tweaks
···1{ lib, stdenv, fetchurl, jre, unzip, runtimeShell }:
23+stdenv.mkDerivation {
00004 pname = "umlet";
5+ version = "15.1.0";
67 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 };
1516 nativeBuildInputs = [ unzip ];