diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-06-17 22:33:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-06-18 00:12:22 +0200 |
commit | 10afdf506166e028dfb48d56d1f3bff3155b90f8 (patch) | |
tree | 32ddd6bccf754e16d358f0a17bed088311546451 | |
parent | 30ac136d6d718b22255b64b9d629d4cecaea1174 (diff) | |
download | patches-10afdf506166e028dfb48d56d1f3bff3155b90f8.tar patches-10afdf506166e028dfb48d56d1f3bff3155b90f8.tar.gz |
gnu: Add iptables.
* gnu/packages/linux.scm (iptables): New variable.
-rw-r--r-- | gnu/packages/linux.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9cd5de82c0..770dd6c5a7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -455,3 +455,28 @@ trace of all the system calls made by a another process/program.") "The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux-based operating system.") (license lgpl2.1+))) + +(define-public iptables + (package + (name "iptables") + (version "1.4.16.2") + (source (origin + (method url-fetch) + (uri (string-append + "http://www.netfilter.org/projects/iptables/files/iptables-" + version ".tar.bz2")) + (sha256 + (base32 + "0vkg5lzkn4l3i1sm6v3x96zzvnv9g7mi0qgj6279ld383mzcws24")))) + (build-system gnu-build-system) + (arguments '(#:tests? #f)) ; no test suite + (home-page "http://www.netfilter.org/projects/iptables/index.html") + (synopsis "Program to configure the Linux IP packet filtering rules") + (description + "iptables is the userspace command line program used to configure the +Linux 2.4.x and later IPv4 packet filtering ruleset. It is targeted towards +system administrators. Since Network Address Translation is also configured +from the packet filter ruleset, iptables is used for this, too. The iptables +package also includes ip6tables. ip6tables is used for configuring the IPv6 +packet filter.") + (license gpl2+))) |