umlet: 15.0.0 -> 15.1.0

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
This commit is contained in:
Alvar Penning 2023-04-07 18:12:50 +02:00
parent 504d4cbc7d
commit da19ea145b

View File

@ -1,16 +1,16 @@
{ lib, stdenv, fetchurl, jre, unzip, runtimeShell }: { lib, stdenv, fetchurl, jre, unzip, runtimeShell }:
let stdenv.mkDerivation {
major = "15";
minor = "0";
patch = "0";
in stdenv.mkDerivation rec {
pname = "umlet"; pname = "umlet";
version = "${major}.${minor}.${patch}"; version = "15.1.0";
src = fetchurl { src = fetchurl {
url = "https://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip"; # NOTE: The download URL breaks consistency - sometimes w/ patch versions
sha256 = "sha256-gdvhqYGyrFuQhhrkF26wXb3TQLRCLm59/uSxTPmHdAE="; # and sometimes w/o. Furthermore, for 15.1.0 they moved everything to the
# new /download subfolder.
# As releases are very rarely, just modify it by hand..
url = "https://www.umlet.com/download/umlet_15_1/umlet-standalone-15.1.zip";
hash = "sha256-M6oVWbOmPBTygS+TFkY9PWucFfYLD33suNUuWpFLMIo=";
}; };
nativeBuildInputs = [ unzip ]; nativeBuildInputs = [ unzip ];