mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
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 changed files with 9 additions and 5 deletions
|
@ -1,25 +1,29 @@
|
|||
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, bind, zlib, openssl, libcap
|
||||
, openssl, ldns
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dnsperf";
|
||||
version = "2.3.4";
|
||||
version = "2.4.0";
|
||||
|
||||
# The same as the initial commit of the new GitHub repo (only readme changed).
|
||||
src = fetchFromGitHub {
|
||||
owner = "DNS-OARC";
|
||||
repo = "dnsperf";
|
||||
rev = "v${version}";
|
||||
sha256 = "1lyci2vdl6g0s5pqs7dkq7pxdahcpkzh614wmy5fwi2f3334y0d1";
|
||||
sha256 = "0q7zmzhhx71v41wf6rhyvpil43ch4a9sx21x47wgcg362lca3cbz";
|
||||
};
|
||||
|
||||
outputs = [ "out" "man" "doc" ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
buildInputs = [ bind zlib openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ];
|
||||
buildInputs = [
|
||||
openssl
|
||||
ldns # optional for DDNS (but cheap anyway)
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
# For now, keep including the old PDFs as well.
|
||||
# https://github.com/DNS-OARC/dnsperf/issues/27
|
||||
|
|
Loading…
Reference in a new issue