nixpkgs/pkgs/os-specific/linux/iptables/default.nix
Eelco Dolstra 85897fa31a * iptables updated to 1.4.1.1.
svn path=/nixpkgs/trunk/; revision=12630
2008-08-15 09:49:43 +00:00

16 lines
422 B
Nix

{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;
};
}