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

44 lines
996 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, perl}:
stdenv.mkDerivation rec {
pname = "ldns";
version = "1.7.0";
name = "${pname}-${version}";
src = fetchurl {
url = "https://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
sha1 = "ceeeccf8a27e61a854762737f6ee02f44662c1b8";
};
patchPhase = ''
2015-09-17 04:20:29 +00:00
patchShebangs doc/doxyparse.pl
'';
2017-06-16 03:12:37 +00:00
outputs = [ "out" "dev" "man" "examples" ];
2015-09-17 04:20:29 +00:00
nativeBuildInputs = [ perl ];
buildInputs = [ openssl ];
configureFlags = [ "--with-ssl=${openssl.dev}" "--with-drill"];
2016-11-14 15:35:34 +00:00
postInstall = ''
moveToOutput "bin/ldns-config" "$dev"
2017-06-16 03:12:37 +00:00
pushd examples
configureFlagsArray+=( "--bindir=$examples/bin" )
configurePhase
make
make install
popd
2016-11-14 15:35:34 +00:00
'';
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 ];
};
}