dnsperf 2.11.2 -> 2.12.0 https://github.com/DNS-OARC/dnsperf/releases attrpath: dnsperf Checking auto update branch... No auto update branch exists Old version 2.11.2" 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.12.0"; src = fetchFromGitHub { owner = "DNS-OARC"; repo = "dnsperf"; rev = "v${version}"; sha256 = "sha256-zB0Cbf0JGIdh0J02crKglOFqWIqNmVyD7kHvg27egNw="; }; 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 ]; }; }