dnsperf: 2.4.0 -> 2.5.0

libck closure contains quite a lot of stuff that we don't need,
but that's best left for another time and perhaps closure doesn't
matter that much for a tool like dnsperf.
This commit is contained in:
Vladimír Čunát 2021-03-17 08:48:14 +01:00
parent e3597057e7
commit eba8103149
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 4 additions and 3 deletions

View File

@ -1,17 +1,17 @@
{ lib, stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkg-config
, openssl, ldns
, openssl, ldns, libck
}:
stdenv.mkDerivation rec {
pname = "dnsperf";
version = "2.4.0";
version = "2.5.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 = "0q7zmzhhx71v41wf6rhyvpil43ch4a9sx21x47wgcg362lca3cbz";
sha256 = "0wcjs512in9w36hbn4mffca02cn5df3s1x7zaj02qv8na5nqq11m";
};
outputs = [ "out" "man" "doc" ];
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
buildInputs = [
openssl
ldns # optional for DDNS (but cheap anyway)
libck
];
doCheck = true;