nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

https-dns-proxy: unstable-2022-05-05 -> 0-unstable-2024-11-18

+5 -8
+5 -8
pkgs/by-name/ht/https-dns-proxy/package.nix
··· 5 5 cmake, 6 6 gtest, 7 7 c-ares, 8 - curl, 8 + curlHTTP3, 9 9 libev, 10 10 }: 11 11 12 12 let 13 - # https-dns-proxy supports HTTP3 if curl has support, but as of 2022-08 curl doesn't work with that enabled 14 - # curl' = (curl.override { http3Support = true; }); 15 - curl' = curl; 16 - 13 + curl' = curlHTTP3; 17 14 in 18 15 stdenv.mkDerivation rec { 19 16 pname = "https-dns-proxy"; 20 17 # there are no stable releases (yet?) 21 - version = "unstable-2022-05-05"; 18 + version = "0-unstable-2024-11-18"; 22 19 23 20 src = fetchFromGitHub { 24 21 owner = "aarond10"; 25 22 repo = "https_dns_proxy"; 26 - rev = "d310a378795790350703673388821558163944de"; 27 - hash = "sha256-On4SKUeltPhzM/x+K9aKciKBw5lmVySxnmLi2tnKr3Y="; 23 + rev = "484bd153bb85a51df1c5bede1b091be76537e0a7"; 24 + hash = "sha256-T4l3kQ2hPgmyKE7xzlkDDUD6AQi8dQPJQnw8NhUUhDY="; 28 25 }; 29 26 30 27 postPatch = ''