Merge pull request #192607 from vcunat/p/knot-dns_bump
ngtcp2-gnutls: 0.8.1 -> 0.9.0
This commit is contained in:
commit
581ffd9518
1 changed files with 5 additions and 3 deletions
|
@ -1,18 +1,18 @@
|
||||||
{ lib, stdenv, fetchFromGitHub
|
{ lib, stdenv, fetchFromGitHub
|
||||||
, autoreconfHook, pkg-config
|
, autoreconfHook, pkg-config
|
||||||
, gnutls
|
, gnutls
|
||||||
, cunit, ncurses
|
, cunit, ncurses, knot-dns
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ngtcp2";
|
pname = "ngtcp2";
|
||||||
version = "0.8.1";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ngtcp2";
|
owner = "ngtcp2";
|
||||||
repo = "ngtcp2";
|
repo = "ngtcp2";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-Sn03nY80UmL5oeoK6ScPye1oSUmEKxgoz2VLHcvor3U=";
|
sha256 = "sha256-nfXEX1GxtmOcb0reRyO0OyQkSHeUWtQW+SZ8thxor+s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
@ -27,6 +27,8 @@ stdenv.mkDerivation rec {
|
||||||
checkInputs = [ cunit ]
|
checkInputs = [ cunit ]
|
||||||
++ lib.optional stdenv.isDarwin ncurses;
|
++ lib.optional stdenv.isDarwin ncurses;
|
||||||
|
|
||||||
|
passthru.tests = knot-dns.passthru.tests; # the only consumer so far
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/ngtcp2/ngtcp2";
|
homepage = "https://github.com/ngtcp2/ngtcp2";
|
||||||
description = "an effort to implement RFC9000 QUIC protocol.";
|
description = "an effort to implement RFC9000 QUIC protocol.";
|
||||||
|
|
Loading…
Reference in a new issue