summary refs log blame commit diff
path: root/pkgs/os-specific/linux/audit/default.nix
blob: afe73ef1b5a9c59b32c77abdb4900a56038c1e29 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                     

  
                                      

                         
                       

                  
                                                                 
                                                                    

    

                                        

                                                       
 

                                                                   




                                                        


                                                            

    
{ stdenv, fetchurl, openldap
, enablePython ? false, python ? null
}:

assert enablePython -> python != null;

stdenv.mkDerivation rec {
  name = "audit-2.6.6";

  src = fetchurl {
    url = "http://people.redhat.com/sgrubb/audit/${name}.tar.gz";
    sha256 = "0jwrww1vn7yqxmb84n6y4p58z34gga0ic4rs2msvpzc2x1hxrn31";
  };

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

  buildInputs = [ openldap ]
            ++ stdenv.lib.optional enablePython python;

  configureFlags = ''
    ${if enablePython then "--with-python" else "--without-python"}
  '';

  meta = {
    description = "Audit Library";
    homepage = "http://people.redhat.com/sgrubb/audit/";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
  };
}