about summary refs log tree commit diff
path: root/pkgs/applications/science/math/weka/default.nix
diff options
context:
space:
mode:
authorFerry Jérémie <ferryjeremie@free.fr>2023-01-21 22:41:12 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-01-22 02:46:49 +0100
commit65d7e87fdb7ed8305012433753d7012312b95242 (patch)
tree2304cbe6c27dd9209531b1b374109679bb81528d /pkgs/applications/science/math/weka/default.nix
parent2272f206cd8063ab87fbb8e47df5d1e2c7788826 (diff)
treewide: replace http by https when https is a permanent redirection
Diffstat (limited to 'pkgs/applications/science/math/weka/default.nix')
-rw-r--r--pkgs/applications/science/math/weka/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/weka/default.nix b/pkgs/applications/science/math/weka/default.nix
index c29015402a39f..004060f832c22 100644
--- a/pkgs/applications/science/math/weka/default.nix
+++ b/pkgs/applications/science/math/weka/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ makeWrapper unzip ];
 
   # The -Xmx1000M comes suggested from their download page:
-  # http://www.cs.waikato.ac.nz/ml/weka/downloading.html
+  # https://www.cs.waikato.ac.nz/ml/weka/downloading.html
   installPhase = ''
     mkdir -pv $out/share/weka
     cp -Rv * $out/share/weka
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    homepage = "http://www.cs.waikato.ac.nz/ml/weka/";
+    homepage = "https://www.cs.waikato.ac.nz/ml/weka/";
     description = "Collection of machine learning algorithms for data mining tasks";
     sourceProvenance = with sourceTypes; [ binaryBytecode ];
     license = licenses.gpl2Plus;