lol

Merge pull request #192607 from vcunat/p/knot-dns_bump

ngtcp2-gnutls: 0.8.1 -> 0.9.0

authored by

Robert Scott and committed by
GitHub
581ffd95 17b1f4e6

+5 -3
+5 -3
pkgs/development/libraries/ngtcp2/gnutls.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 , autoreconfHook, pkg-config 3 , gnutls 4 - , cunit, ncurses 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "ngtcp2"; 9 - version = "0.8.1"; 10 11 src = fetchFromGitHub { 12 owner = "ngtcp2"; 13 repo = "ngtcp2"; 14 rev = "v${version}"; 15 - sha256 = "sha256-Sn03nY80UmL5oeoK6ScPye1oSUmEKxgoz2VLHcvor3U="; 16 }; 17 18 outputs = [ "out" "dev" ]; ··· 26 doCheck = true; 27 checkInputs = [ cunit ] 28 ++ lib.optional stdenv.isDarwin ncurses; 29 30 meta = with lib; { 31 homepage = "https://github.com/ngtcp2/ngtcp2";
··· 1 { lib, stdenv, fetchFromGitHub 2 , autoreconfHook, pkg-config 3 , gnutls 4 + , cunit, ncurses, knot-dns 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "ngtcp2"; 9 + version = "0.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "ngtcp2"; 13 repo = "ngtcp2"; 14 rev = "v${version}"; 15 + sha256 = "sha256-nfXEX1GxtmOcb0reRyO0OyQkSHeUWtQW+SZ8thxor+s="; 16 }; 17 18 outputs = [ "out" "dev" ]; ··· 26 doCheck = true; 27 checkInputs = [ cunit ] 28 ++ lib.optional stdenv.isDarwin ncurses; 29 + 30 + passthru.tests = knot-dns.passthru.tests; # the only consumer so far 31 32 meta = with lib; { 33 homepage = "https://github.com/ngtcp2/ngtcp2";