* iptables updated to 1.4.1.1.

svn path=/nixpkgs/trunk/; revision=12630
This commit is contained in:
Eelco Dolstra
2008-08-15 09:49:43 +00:00
parent a031f1cbf0
commit 85897fa31a
3 changed files with 17 additions and 32 deletions
@@ -0,0 +1,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;
};
}