umlet: 14.3.0 -> 15.0.0
This commit is contained in:
parent
ebd442ebd6
commit
073ee0e4ab
1 changed files with 9 additions and 7 deletions
|
@ -1,14 +1,16 @@
|
|||
{ lib, stdenv, fetchurl, jre, unzip, runtimeShell }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
major = "14";
|
||||
minor = "3";
|
||||
version = "${major}.${minor}.0";
|
||||
let
|
||||
major = "15";
|
||||
minor = "0";
|
||||
patch = "0";
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "umlet";
|
||||
version = "${major}.${minor}.${patch}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip";
|
||||
sha256 = "0jfyxjxsjx29xhs3fl0f574nyncmk9j5jp8zlgd401mcaznn9c7l";
|
||||
url = "https://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip";
|
||||
sha256 = "sha256-gdvhqYGyrFuQhhrkF26wXb3TQLRCLm59/uSxTPmHdAE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
@ -43,7 +45,7 @@ stdenv.mkDerivation rec {
|
|||
UMLet runs stand-alone or as Eclipse plug-in on Windows, macOS and
|
||||
Linux.
|
||||
'';
|
||||
homepage = "http://www.umlet.com";
|
||||
homepage = "https://www.umlet.com";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ oxzi ];
|
||||
platforms = platforms.all;
|
||||
|
|
Loading…
Reference in a new issue