dnsperf: nitpick changes
- project adopted by DNS-OARC - cleanup the expression
This commit is contained in:
parent
c327693407
commit
1bf986b369
@ -4,6 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "dnsperf-${version}";
|
name = "dnsperf-${version}";
|
||||||
version = "2.1.0.0";
|
version = "2.1.0.0";
|
||||||
|
|
||||||
|
# The same as the initial commit of the new GitHub repo (only readme changed).
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.nominum.com/pub/nominum/dnsperf/${version}/"
|
url = "ftp://ftp.nominum.com/pub/nominum/dnsperf/${version}/"
|
||||||
+ "dnsperf-src-${version}-1.tar.gz";
|
+ "dnsperf-src-${version}-1.tar.gz";
|
||||||
@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "out" "man" "doc" ];
|
outputs = [ "out" "man" "doc" ];
|
||||||
|
|
||||||
buildInputs = [ bind zlib openssl ]
|
buildInputs = [ bind zlib openssl ]
|
||||||
++ stdenv.lib.optional stdenv.isLinux [ libcap libcap.lib libseccomp ];
|
++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p "$out/share/doc/"
|
mkdir -p "$out/share/doc/"
|
||||||
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
outputsToInstall = outputs; # The man pages and PDFs are likely useful to most.
|
outputsToInstall = outputs; # The man pages and PDFs are likely useful to most.
|
||||||
|
|
||||||
description = "Tools for DNS benchmaring";
|
description = "Tools for DNS benchmaring";
|
||||||
homepage = https://www.akamai.com/us/en/products/network-operator/measurement-tools.jsp;
|
homepage = "https://github.com/DNS-OARC/dnsperf";
|
||||||
license = licenses.isc;
|
license = licenses.isc;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.vcunat ];
|
maintainers = [ maintainers.vcunat ];
|
||||||
|
Loading…
Reference in New Issue
Block a user