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

                         
                                 
                    
 

                                                                                                             
                                                                    

    

                                        
                                       
 
                 
                   

     

                                                                                
 
                           
                                                                           

                                                          

                                                                  

    
{ stdenv, fetchurl, getopt, makeWrapper }:

stdenv.mkDerivation rec {
  name = "libseccomp-${version}";
  version = "2.3.3";

  src = fetchurl {
    url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
    sha256 = "0mdiyfljrkfl50q1m3ws8yfcyfjwf1zgkvcva8ffcwncji18zhkz";
  };

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

  buildInputs = [ getopt makeWrapper ];

  patchPhase = ''
    patchShebangs .
  '';

  # Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
  preFixup = "rm -rfv src";

  meta = with stdenv.lib; {
    description = "High level library for the Linux Kernel seccomp filter";
    homepage    = "https://github.com/seccomp/libseccomp";
    license     = licenses.lgpl21;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ thoughtpolice wkennington ];
  };
}