2022-11-14T09:03:50 dnsperf 2.9.0 -> 2.10.0 https://repology.org/metapackage/dnsperf/versions 2022-11-14T09:03:53 attrpath: dnsperf 2022-11-14T09:03:53 Checking auto update branch... 2022-11-14T09:03:53 No auto update branch exists 2022-11-14T09:03:54 Old version 2.9.0" not present in master derivation file with contents: { lib , stdenv , autoreconfHook , fetchFromGitHub , ldns , libck , nghttp2 , openssl , pkg-config }: stdenv.mkDerivation rec { pname = "dnsperf"; version = "2.10.0"; src = fetchFromGitHub { owner = "DNS-OARC"; repo = "dnsperf"; rev = "v${version}"; sha256 = "sha256-V8wFswGs4p045mOyLA1Zrlz4JtfojHbUir0esS2iUIs="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ ldns # optional for DDNS (but cheap anyway) libck nghttp2 openssl ]; doCheck = true; meta = with lib; { description = "Tools for DNS benchmaring"; homepage = "https://www.dns-oarc.net/tools/dnsperf"; license = licenses.isc; platforms = platforms.unix; maintainers = with maintainers; [ vcunat ]; }; }