bump ngtcp2; gnutls is now experimental and has to be enabled explicitly
This commit is contained in:
parent
7e9a06b51d
commit
7cce3c4103
|
@ -7,17 +7,21 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ngtcp2";
|
pname = "ngtcp2";
|
||||||
version = "20210116";
|
version = "20210117";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ngtcp2";
|
owner = "ngtcp2";
|
||||||
repo = "ngtcp2";
|
repo = "ngtcp2";
|
||||||
rev = "c9bba36da0ea033ffc644b0a981b9fa78f5adae6";
|
rev = "9c41c641a76670a7a4157f93376ccd3a1ebf1b87";
|
||||||
sha256 = "19rz2zyln0f4rc4cms5yd4nmwcnnqpmbc3z330vbdfxazv4rcs1r";
|
sha256 = "12v9br6szchqr5g91bwi5nzpzvn9gddqcmh62lhpshzn064na40x";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-gnutls"
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
pkgconfig
|
pkgconfig
|
||||||
|
|
Loading…
Reference in New Issue