summary refs log blame commit diff
path: root/pkgs/development/libraries/ldns/default.nix
blob: 883625e551a751504e1aa7a7cf0cb6ace65ab298 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                  
                         
                       
 
                  
                                                                  
                                                                    

    

                            



                                         

     

                               
 
                                                                  
 



                                         
                           
                                                                             
                            
                                                        
                                
                                                

    
{stdenv, fetchurl, openssl, perl}:

stdenv.mkDerivation rec {
  name = "ldns-1.6.17";

  src = fetchurl {
    url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
    sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
  };

  outputs = [ "out" "dev" ];

  patches = [ ./perl-5.22-compat.patch ];

  postPatch = ''
    patchShebangs doc/doxyparse.pl
  '';

  nativeBuildInputs = [ perl ];
  buildInputs = [ openssl ];

  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;
    homepage = "http://www.nlnetlabs.nl/projects/ldns/";
    platforms = platforms.linux;
    maintainers = with maintainers; [ jgeerds ];
  };
}