Unverified Commit 671c18a0 authored by Janik's avatar Janik Committed by GitHub
Browse files

Merge pull request #225177 from oxzi/umlet-15.1.0

parents 65182a9f da19ea14
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, jre, unzip, runtimeShell }:

let
  major = "15";
  minor = "0";
  patch = "0";
in stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "umlet";
  version = "${major}.${minor}.${patch}";
  version = "15.1.0";

  src = fetchurl {
    url = "https://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip";
    sha256 = "sha256-gdvhqYGyrFuQhhrkF26wXb3TQLRCLm59/uSxTPmHdAE=";
    # NOTE: The download URL breaks consistency - sometimes w/ patch versions
    # 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 ];