3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #20430 from ttuegel/multiple-outputs-ldns

ldns: multiple outputs
This commit is contained in:
Thomas Tuegel 2016-11-16 07:29:11 -06:00 committed by GitHub
commit ecbb4db055

View file

@ -8,6 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
};
outputs = [ "out" "dev" ];
patches = [ ./perl-5.22-compat.patch ];
postPatch = ''
@ -19,6 +21,10 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-ssl=${openssl.dev}" "--with-drill" ];
postInstall = ''
moveToOutput "bin/ldns-config" "$dev"
'';
meta = with stdenv.lib; {
description = "Library with the aim of simplifying DNS programming in C";
license = licenses.bsd3;