nixpkgs/pkgs/development/libraries/ldns/default.nix

30 lines
757 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, perl}:
stdenv.mkDerivation rec {
2014-10-07 19:16:36 +00:00
name = "ldns-1.6.17";
src = fetchurl {
url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
2014-10-07 19:16:36 +00:00
sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
};
2015-09-17 04:20:29 +00:00
patches = [ ./perl-5.22-compat.patch ];
postPatch = ''
patchShebangs doc/doxyparse.pl
'';
2015-09-17 04:20:29 +00:00
nativeBuildInputs = [ perl ];
buildInputs = [ openssl ];
configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];
2015-08-03 09:37:15 +00:00
meta = with stdenv.lib; {
description = "Library with the aim of simplifying DNS programming in C";
2015-08-03 09:37:15 +00:00
license = licenses.bsd3;
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
2015-08-03 09:37:15 +00:00
platforms = platforms.linux;
2015-08-03 09:37:40 +00:00
maintainers = with maintainers; [ jgeerds ];
};
}