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