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

                         
                             
 

                                                
                                                                    

    
                                           
 
                    
                                                                    
                                                                     
                            


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

stdenv.mkDerivation rec {
  name = "uid_wrapper-1.2.8";

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

  nativeBuildInputs = [ cmake pkg-config ];

  meta = with 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.all;
  };
}