about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtem Leshchev <matshch@avride.ai>2023-12-06 20:46:02 +0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-12-06 21:43:28 +0000
commit9a86511f121609363c9f0e07f49e4a1b7d7fc98e (patch)
treeb9c24a0db9399f6b33ff9c1454d1687c078f98ea
parent1884e469620902cb6a1ad7ce430cfadd7b32d93d (diff)
c-ares: update source URL
c-ares has moved to the new URL in 2021[^1], and now old link only
redirects to the new one. Moreover, old link is broken on IPv6-only
networks (old domain resolves to IPv6 address, but this address refuses
connections). This commit changes link to the current one.

[^1]: https://lists.haxx.se/pipermail/c-ares/2021-September/000001.html

(cherry picked from commit 321e06827d7e78b041de86b27f9fe1dc0b786bbd)
-rw-r--r--pkgs/development/libraries/c-ares/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index b8201f8ce5c6c..60578f79ea573 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   version = "1.19.1";
 
   src = fetchurl {
-    url = "https://c-ares.haxx.se/download/${pname}-${version}.tar.gz";
+    url = "https://c-ares.org/download/${pname}-${version}.tar.gz";
     sha256 = "sha256-MhcAOZty7Q4DfQB0xinndB9rLsLdqSlWq+PpZx0+Jo4=";
   };