nixpkgs-suyu/pkgs/tools/networking/dnsperf/default.nix

45 lines
771 B
Nix
Raw Normal View History

2021-11-28 11:31:24 +01:00
{ lib
, stdenv
, autoreconfHook
, fetchFromGitHub
, ldns
, libck
, nghttp2
, openssl
, pkg-config
}:
2016-12-08 19:13:42 +01:00
stdenv.mkDerivation rec {
pname = "dnsperf";
2021-11-28 11:31:24 +01:00
version = "2.8.0";
2016-12-08 19:13:42 +01:00
src = fetchFromGitHub {
owner = "DNS-OARC";
repo = "dnsperf";
rev = "v${version}";
2021-11-28 11:31:24 +01:00
sha256 = "sha256-jemce+ix18IPAusEHh5QWcSQn/QRUOc3HTSk9jGt+SA=";
2016-12-08 19:13:42 +01:00
};
2021-11-28 11:31:24 +01:00
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
ldns # optional for DDNS (but cheap anyway)
libck
2021-11-28 11:31:24 +01:00
nghttp2
openssl
];
doCheck = true;
2016-12-08 19:13:42 +01:00
meta = with lib; {
2016-12-08 19:13:42 +01:00
description = "Tools for DNS benchmaring";
2021-11-28 11:31:24 +01:00
homepage = "https://www.dns-oarc.net/tools/dnsperf";
2016-12-08 19:13:42 +01:00
license = licenses.isc;
platforms = platforms.unix;
2021-11-28 11:31:24 +01:00
maintainers = with maintainers; [ vcunat ];
2016-12-08 19:13:42 +01:00
};
}