From 6c09d5de9388a3820e4c681af40c4ed7745d4c6f Mon Sep 17 00:00:00 2001 From: Izorkin Date: Wed, 4 May 2022 19:39:22 +0300 Subject: [PATCH 1/3] quictls: 3.0.1+quick_unstable-2021-12.14 -> 3.0.3+quick_unstable-2022-05.04 --- pkgs/development/libraries/quictls/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/quictls/default.nix b/pkgs/development/libraries/quictls/default.nix index 2cc043ee0c1b..0f85836a9c68 100644 --- a/pkgs/development/libraries/quictls/default.nix +++ b/pkgs/development/libraries/quictls/default.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "quictls"; - version = "3.0.2+quick_unstable-2022-03.15"; + version = "3.0.3+quick_unstable-2022-05.04"; src = fetchFromGitHub { owner = "quictls"; repo = "openssl"; - rev = "7f2ab56a2b842b8e6fefc7b9d20eb5ff9c6ef151"; - sha256 = "sha256-We4ow0mGJFXqYM4PqbGn8qY5IYH/MtNaefrSaJreoRA="; + rev = "368c9d581b17f0bbe425f8dedeaa7b864a7b29ce"; + sha256 = "sha256-W3bILxhyeziWQNZUHUg/D9eV8LnmHJqEFwyzWjJrRuc="; }; patches = [ @@ -156,7 +156,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { - homepage = "https://quictls.github.io/openssl/"; + homepage = "https://quictls.github.io"; description = "TLS/SSL and crypto library with QUIC APIs"; license = licenses.openssl; platforms = platforms.all; From 10fbc4fdc6bcd776c961b512a45051305aaa8138 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 19 May 2022 22:41:24 +0300 Subject: [PATCH 2/3] ngtcp2: 0.4.0 -> 0.5.0 --- pkgs/development/libraries/ngtcp2/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/ngtcp2/default.nix b/pkgs/development/libraries/ngtcp2/default.nix index 4b08a9186472..68dabef6d9fb 100644 --- a/pkgs/development/libraries/ngtcp2/default.nix +++ b/pkgs/development/libraries/ngtcp2/default.nix @@ -1,21 +1,23 @@ { lib, stdenv, fetchFromGitHub -, autoreconfHook, pkg-config -, cunit, file, ncurses +, autoreconfHook, pkg-config, file , libev, nghttp3, quictls +, cunit, ncurses , withJemalloc ? false, jemalloc }: stdenv.mkDerivation rec { pname = "ngtcp2"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "ngtcp2"; repo = pname; rev = "v${version}"; - sha256 = "sha256-nmVVK2lpz01hgSxPAMmBfF+nNVZu9PWRGzCWh/5yhj8="; + sha256 = "sha256-hpIGsQBJCOyaEqopdES/hRXc2makIERonUju9D/HvgE="; }; + outputs = [ "out" "dev" "doc" ]; + nativeBuildInputs = [ autoreconfHook pkg-config file ]; buildInputs = [ libev nghttp3 quictls ] ++ lib.optional withJemalloc jemalloc; checkInputs = [ cunit ncurses ]; @@ -24,8 +26,6 @@ stdenv.mkDerivation rec { substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file ''; - outputs = [ "out" "dev" ]; - doCheck = true; enableParallelBuilding = true; From e7ae976b6f5d6275cbdbf102a02e8054192ff1c0 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 19 May 2022 22:44:57 +0300 Subject: [PATCH 3/3] nghttp3: 0.4.0 -> 0.4.1 --- pkgs/development/libraries/nghttp3/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/nghttp3/default.nix b/pkgs/development/libraries/nghttp3/default.nix index 6a2ae909a0c0..32e3917e72c1 100644 --- a/pkgs/development/libraries/nghttp3/default.nix +++ b/pkgs/development/libraries/nghttp3/default.nix @@ -1,19 +1,21 @@ { lib, stdenv, fetchFromGitHub -, autoreconfHook, pkg-config -, cunit, file, ncurses +, autoreconfHook, pkg-config, file +, cunit, ncurses }: stdenv.mkDerivation rec { pname = "nghttp3"; - version = "0.4.0"; + version = "0.4.1"; src = fetchFromGitHub { owner = "ngtcp2"; repo = pname; rev = "v${version}"; - sha256 = "sha256-toGTkgJLdSLNWCPJFpT63IxF3xANbvtkhJo5NUg/ZBg="; + sha256 = "sha256-1+0ln0J8dqHqmE+fsawhbfbbMNlCkDpJx4xomUuoHdE="; }; + outputs = [ "out" "dev" "doc" ]; + nativeBuildInputs = [ autoreconfHook pkg-config file ]; checkInputs = [ cunit ncurses ]; @@ -21,8 +23,6 @@ stdenv.mkDerivation rec { substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file ''; - outputs = [ "out" "dev" ]; - doCheck = true; enableParallelBuilding = true;