dnsperf: 2.3.4 -> 2.4.0
https://github.com/DNS-OARC/dnsperf/releases/tag/v2.4.0
This commit is contained in:
parent
0f08fc1dc6
commit
0e18a48042
@ -1,25 +1,29 @@
|
|||||||
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig
|
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||||
, bind, zlib, openssl, libcap
|
, openssl, ldns
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dnsperf";
|
pname = "dnsperf";
|
||||||
version = "2.3.4";
|
version = "2.4.0";
|
||||||
|
|
||||||
# The same as the initial commit of the new GitHub repo (only readme changed).
|
# The same as the initial commit of the new GitHub repo (only readme changed).
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "DNS-OARC";
|
owner = "DNS-OARC";
|
||||||
repo = "dnsperf";
|
repo = "dnsperf";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1lyci2vdl6g0s5pqs7dkq7pxdahcpkzh614wmy5fwi2f3334y0d1";
|
sha256 = "0q7zmzhhx71v41wf6rhyvpil43ch4a9sx21x47wgcg362lca3cbz";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "man" "doc" ];
|
outputs = [ "out" "man" "doc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [ bind zlib openssl ]
|
buildInputs = [
|
||||||
++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ];
|
openssl
|
||||||
|
ldns # optional for DDNS (but cheap anyway)
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
# For now, keep including the old PDFs as well.
|
# For now, keep including the old PDFs as well.
|
||||||
# https://github.com/DNS-OARC/dnsperf/issues/27
|
# https://github.com/DNS-OARC/dnsperf/issues/27
|
||||||
|
Loading…
x
Reference in New Issue
Block a user