From e7ae976b6f5d6275cbdbf102a02e8054192ff1c0 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 19 May 2022 22:44:57 +0300 Subject: [PATCH] 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 6a2ae909a0c..32e3917e72c 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;