curlHTTP3: drop
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
client =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.curlHTTP3 ];
|
||||
environment.systemPackages = [ pkgs.curl ];
|
||||
};
|
||||
};
|
||||
testScript = ''
|
||||
|
||||
@@ -66,7 +66,7 @@ builtins.listToAttrs (
|
||||
client =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.curlHTTP3 ];
|
||||
environment.systemPackages = [ pkgs.curl ];
|
||||
networking = {
|
||||
interfaces.eth1 = {
|
||||
ipv4.addresses = [
|
||||
|
||||
@@ -64,7 +64,7 @@ in
|
||||
client =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.curlHTTP3 ];
|
||||
environment.systemPackages = [ pkgs.curl ];
|
||||
networking = {
|
||||
interfaces.eth1 = {
|
||||
ipv4.addresses = [
|
||||
|
||||
@@ -249,7 +249,7 @@ in
|
||||
];
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.curlHTTP3
|
||||
pkgs.curl
|
||||
pkgs.iproute2
|
||||
];
|
||||
|
||||
@@ -308,7 +308,7 @@ in
|
||||
];
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.curlHTTP3
|
||||
pkgs.curl
|
||||
pkgs.iproute2
|
||||
];
|
||||
|
||||
@@ -369,7 +369,7 @@ in
|
||||
(builtins.readFile ./common/acme/server/ca.cert.pem)
|
||||
];
|
||||
|
||||
environment.systemPackages = [ pkgs.curlHTTP3 ];
|
||||
environment.systemPackages = [ pkgs.curl ];
|
||||
|
||||
systemd.services.sing-box.serviceConfig.ExecStartPost = [
|
||||
"+${tproxyPost}/bin/exe"
|
||||
|
||||
@@ -44,7 +44,7 @@ in
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.curlHTTP3
|
||||
pkgs.curl
|
||||
];
|
||||
|
||||
services.h2o = {
|
||||
|
||||
@@ -5,13 +5,10 @@
|
||||
cmake,
|
||||
gtest,
|
||||
c-ares,
|
||||
curlHTTP3,
|
||||
curl,
|
||||
libev,
|
||||
}:
|
||||
|
||||
let
|
||||
curl' = curlHTTP3;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "https-dns-proxy";
|
||||
# there are no stable releases (yet?)
|
||||
@@ -38,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
c-ares
|
||||
curl'
|
||||
curl
|
||||
libev
|
||||
];
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
stdenv,
|
||||
fetchurl,
|
||||
cmake,
|
||||
curlHTTP3,
|
||||
curl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
doCheck = true;
|
||||
|
||||
passthru.tests = {
|
||||
inherit curlHTTP3;
|
||||
inherit curl;
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
openssl,
|
||||
withJemalloc ? false,
|
||||
jemalloc,
|
||||
curlHTTP3,
|
||||
curl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
doCheck = true;
|
||||
|
||||
passthru.tests = {
|
||||
inherit curlHTTP3;
|
||||
inherit curl;
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -694,6 +694,7 @@ mapAliases {
|
||||
cudaPackages_12_4 = throw "CUDA 12.4 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2025-08-08
|
||||
cudaPackages_12_5 = throw "CUDA 12.5 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2025-08-08
|
||||
cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12
|
||||
curlHTTP3 = lib.warnOnInstantiate "'curlHTTP3' has been removed, as 'curl' now has HTTP/3 support enabled by default" curl; # Added 2025-08-22
|
||||
cutemarked-ng = throw "'cutemarked-ng' has been removed due to lack of maintenance upstream. Consider using 'kdePackages.ghostwriter' instead"; # Added 2024-12-27
|
||||
cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2024-10-17
|
||||
cyber = throw "cyber has been removed, as it does not build with supported Zig versions"; # Added 2025-08-09
|
||||
|
||||
@@ -2643,10 +2643,6 @@ with pkgs;
|
||||
websocketSupport = true;
|
||||
};
|
||||
|
||||
curlHTTP3 = curl.override {
|
||||
http3Support = true;
|
||||
};
|
||||
|
||||
curl = curlMinimal.override (
|
||||
{
|
||||
idnSupport = true;
|
||||
|
||||
Reference in New Issue
Block a user