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

27 lines
741 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, perl}:
stdenv.mkDerivation rec {
2014-10-07 20:16:36 +01:00
name = "ldns-1.6.17";
src = fetchurl {
url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
2014-10-07 20:16:36 +01: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 10:37:15 +01:00
meta = with stdenv.lib; {
description = "Library with the aim of simplifying DNS programming in C";
2015-08-03 10:37:15 +01:00
license = licenses.bsd3;
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
2015-08-03 10:37:15 +01:00
platforms = platforms.linux;
2015-08-03 10:37:40 +01:00
maintainers = with maintainers; [ jgeerds ];
};
}