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
, 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;

Loading…
Cancel
Save