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

                                  
                         



                               
 
                  

                                                                   

    
                 
                                  

     
                                  
 

                               
 
                                                                 
 



                                         
                           
                                                                             
                            
                                                        
                                
                                                

    
{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 = ''
    patchShebangs doc/doxyparse.pl
  '';

  outputs = [ "out" "dev" "man" ];

  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 ];
  };
}