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

26 lines
692 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";
};
patchPhase = ''
sed -i 's,\$(srcdir)/doc/doxyparse.pl,perl $(srcdir)/doc/doxyparse.pl,' Makefile.in
'';
buildInputs = [ openssl perl ];
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;
};
}