about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/palemoon
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2023-02-22 22:31:14 +0100
committerOPNA2608 <christoph.neidahl@gmail.com>2023-02-22 22:31:37 +0100
commitc358f92d00019af5931ab1940d0901b82f4e28ba (patch)
tree5bf05fb1c0ac2faffda5c3ebb201f8665ca4ce03 /pkgs/applications/networking/browsers/palemoon
parent3d566e183b71fec07b6d466375190f9e79b1e735 (diff)
palemoon-bin: 32.0.0 -> 32.0.1
Diffstat (limited to 'pkgs/applications/networking/browsers/palemoon')
-rw-r--r--pkgs/applications/networking/browsers/palemoon/bin.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/networking/browsers/palemoon/bin.nix b/pkgs/applications/networking/browsers/palemoon/bin.nix
index ade66f76e2570..1f650a2fdd589 100644
--- a/pkgs/applications/networking/browsers/palemoon/bin.nix
+++ b/pkgs/applications/networking/browsers/palemoon/bin.nix
@@ -17,14 +17,17 @@
 
 stdenv.mkDerivation rec {
   pname = "palemoon-bin";
-  version = "32.0.0";
+  version = "32.0.1";
 
   src = fetchzip {
-    url = "http://linux.palemoon.org/datastore/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz";
+    urls = [
+      "https://rm-eu.palemoon.org/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
+      "https://rm-us.palemoon.org/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
+    ];
     hash = if withGTK3 then
-      "sha256-KipzrQEbwd3np3t2oTq2eHHLUPtnC/nnGYMGmFc7arw="
+      "sha256-CSAsZTMIeInuvN7mddiMDtzzNKuYST2zp1XczKAP1mQ="
     else
-      "sha256-dbHGThzLx23Ws0nfGTEYrQp0g+hYwkk1bOczQwt4NYg=";
+      "sha256-bvdy4tqnuoUxVVz/8zp7VwfS3wH51eKCzXDqgDWMb3A=";
   };
 
   preferLocalBuild = true;