about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-05-11 13:13:27 +0300
committerGitHub <noreply@github.com>2022-05-11 13:13:27 +0300
commit33efe9ef2b45657687ff2acda3b90d3c09ba6725 (patch)
tree09068e32ca0f3556738e0951389adeda45ddb084 /pkgs/tools
parent1693bb9d29512e4a37d68bb844f86df11f309690 (diff)
parent073ee0e4ab0b7d326a58d05fbe7dce8644ce4e6d (diff)
Merge pull request #171039 from oxzi/umlet-15.0
umlet: 14.3.0 -> 15.0.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/umlet/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/tools/misc/umlet/default.nix b/pkgs/tools/misc/umlet/default.nix
index d88e0bdea15e1..aca04546fd2aa 100644
--- a/pkgs/tools/misc/umlet/default.nix
+++ b/pkgs/tools/misc/umlet/default.nix
@@ -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;