mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
37 lines
894 B
Nix
37 lines
894 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, autoreconfHook, pkg-config, file
|
|
, cunit, ncurses
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nghttp3";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ngtcp2";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Zexcfkf8Br3wduUpM3tcS68fEVO6reNxYSB3X3qUWKg=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config file ];
|
|
nativeCheckInputs = [ cunit ncurses ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
|
|
'';
|
|
|
|
doCheck = true;
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ngtcp2/nghttp3";
|
|
description = "nghttp3 is an implementation of HTTP/3 mapping over QUIC and QPACK in C.";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ izorkin ];
|
|
};
|
|
}
|