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

42 lines
1.3 KiB
Nix
Raw Normal View History

2018-06-10 17:32:17 -07:00
{ stdenv, fetchurl, bind, libseccomp, zlib, openssl, libcap }:
2016-12-08 10:13:42 -08:00
stdenv.mkDerivation rec {
name = "dnsperf-${version}";
version = "2.1.0.0";
src = fetchurl {
url = "ftp://ftp.nominum.com/pub/nominum/dnsperf/${version}/"
+ "dnsperf-src-${version}-1.tar.gz";
sha256 = "03kfc65s5a9csa5i7xjsv0psq144k8d9yw7xlny61bg1h2kg1db4";
};
# Almost the same as https://github.com/DNS-OARC/dnsperf/pull/12
postPatch = ''
find . -name '*.h' -o -name '*.c' | xargs sed \
-e 's/\<isc_boolean_t\>/bool/g' -e 's/\<ISC_TRUE\>/true/g' -e 's/\<ISC_FALSE\>/false/g' \
-e 's/\<isc_uint/uint/g' -e 's/\<ISC_UINT/UINT/g' -e 's/\<isc_int/int/g' \
-e 's/\<ISC_PRINT_QUADFORMAT\>/PRIu64/g' -e 's/\<ISC_TF\>//g' \
-i --
'';
outputs = [ "out" "man" "doc" ];
2016-12-08 10:13:42 -08:00
2018-06-10 17:32:17 -07:00
buildInputs = [ bind zlib openssl ]
++ stdenv.lib.optional stdenv.isLinux [ libcap libcap.lib libseccomp ];
2016-12-08 10:13:42 -08:00
postInstall = ''
mkdir -p "$out/share/doc/"
cp -r ./doc "$out/share/doc/dnsperf"
'';
meta = with stdenv.lib; {
outputsToInstall = outputs; # The man pages and PDFs are likely useful to most.
description = "Tools for DNS benchmaring";
homepage = https://www.akamai.com/us/en/products/network-operator/measurement-tools.jsp;
2016-12-08 10:13:42 -08:00
license = licenses.isc;
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ];
};
}