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

                   
                         
                           

                  
                                                                             
                                                                    

    



                     
 


                                                                                 
                                           

    
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "iptables-1.4.21";

  src = fetchurl {
    url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
    sha256 = "1q6kg7sf0pgpq0qhab6sywl23cngxxfzc9zdzscsba8x09l4q02j";
  };

  configureFlags = ''
    --enable-devel
    --enable-shared
  '';

  meta = {
    description = "A program to configure the Linux IP packet filtering ruleset";
    homepage = http://www.netfilter.org/projects/iptables/index.html;
    platforms = stdenv.lib.platforms.linux;
  };
}