From 128d8fb72d64355cb6d7080d65f1941f4bb14d82 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Sat, 17 Feb 2024 12:24:07 +0300 Subject: [PATCH] nghttp3: 1.1.0 -> 1.2.0 --- pkgs/development/libraries/nghttp3/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/nghttp3/default.nix b/pkgs/development/libraries/nghttp3/default.nix index 76de14079deb..d2bd0900dd3c 100644 --- a/pkgs/development/libraries/nghttp3/default.nix +++ b/pkgs/development/libraries/nghttp3/default.nix @@ -1,31 +1,29 @@ { lib, stdenv, fetchFromGitHub , cmake -, cunit, ncurses , curlHTTP3 }: stdenv.mkDerivation rec { pname = "nghttp3"; - version = "1.1.0"; + version = "1.2.0"; src = fetchFromGitHub { owner = "ngtcp2"; repo = pname; rev = "v${version}"; - hash = "sha256-B/5r0mRpOEi5DQ7OUAAcDmAm1nnak6qNz4qjDrzWlDc="; + hash = "sha256-kJt4aQGNiJ0XhlEKunR8jYKytv3rh23jRrNelCDe/Kk="; + fetchSubmodules = true; }; outputs = [ "out" "dev" "doc" ]; nativeBuildInputs = [ cmake ]; - nativeCheckInputs = [ cunit ncurses ]; cmakeFlags = [ - "-DENABLE_STATIC_LIB=OFF" + (lib.cmakeBool "ENABLE_STATIC_LIB" false) ]; doCheck = true; - enableParallelBuilding = true; passthru.tests = { inherit curlHTTP3;