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

                         
                                


                                                
                                                                    

    
                                           

                           
                                                                    
                                                                     
                            
                                

    
{ stdenv, fetchurl, cmake, pkg-config }:

stdenv.mkDerivation rec {
  name = "resolv_wrapper-1.1.6";

  src = fetchurl {
    url = "mirror://samba/cwrap/${name}.tar.gz";
    sha256 = "13k76l4s0v032xyyaf19qw6p4qc81ybx1wynkz2pzjhiljazsdpa";
  };

  nativeBuildInputs = [ cmake pkg-config ];

  meta = with stdenv.lib; {
    description = "A wrapper for the user, group and hosts NSS API";
    homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
    license = licenses.bsd3;
    platforms = platforms.linux;
  };
}