summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iptables/default.nix
blob: 606cf7796f90e4f3447ae5a49edb0e377903f97b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "iptables-1.3.7";
  src = fetchurl {
    url = http://www.netfilter.org/projects/iptables/files/iptables-1.3.7.tar.bz2;
    sha256 = "00nffc03akgm5p0skz90nl29h5d8b9fjc0d9lhipkbwy0ahcw00f";
  };
  preBuild = "makeFlagsArray=(PREFIX=$out)";
}