summary refs log blame commit diff
path: root/pkgs/os-specific/linux/iptables/default.nix
blob: 89566ab1bb474b9a875fe67f994cc6a7b0de7c18 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                    
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "iptables-1.4.1.1";

  src = fetchurl {
    url = http://www.netfilter.org/projects/iptables/files/iptables-1.4.1.1.tar.bz2;
    sha256 = "10mmf0d2gpshhi5a73z1y14wdh7pdk3hvn78ps5i37qayv6irqgr";
  };

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