nghttp3: 0.4.0 -> 0.4.1

main
Izorkin 2 years ago
parent 10fbc4fdc6
commit e7ae976b6f
No known key found for this signature in database
GPG Key ID: 1436C1B3F3679F09
  1. 12
      pkgs/development/libraries/nghttp3/default.nix

@ -1,19 +1,21 @@
{ lib, stdenv, fetchFromGitHub { lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config , autoreconfHook, pkg-config, file
, cunit, file, ncurses , cunit, ncurses
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "nghttp3"; pname = "nghttp3";
version = "0.4.0"; version = "0.4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ngtcp2"; owner = "ngtcp2";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-toGTkgJLdSLNWCPJFpT63IxF3xANbvtkhJo5NUg/ZBg="; sha256 = "sha256-1+0ln0J8dqHqmE+fsawhbfbbMNlCkDpJx4xomUuoHdE=";
}; };
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [ autoreconfHook pkg-config file ]; nativeBuildInputs = [ autoreconfHook pkg-config file ];
checkInputs = [ cunit ncurses ]; checkInputs = [ cunit ncurses ];
@ -21,8 +23,6 @@ stdenv.mkDerivation rec {
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
''; '';
outputs = [ "out" "dev" ];
doCheck = true; doCheck = true;
enableParallelBuilding = true; enableParallelBuilding = true;

Loading…
Cancel
Save