2015-12-31 17:54:56 -08:00
|
|
|
{stdenv, fetchurl, bison, flex, libnetfilter_conntrack, libnftnl, libmnl}:
|
2008-08-15 02:49:43 -07:00
|
|
|
|
2009-07-23 11:16:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-12 14:16:48 -08:00
|
|
|
name = "iptables-${version}";
|
2015-12-31 17:54:56 -08:00
|
|
|
version = "1.6.0";
|
2008-08-15 02:49:43 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-07-23 11:16:24 -07:00
|
|
|
url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
|
2015-12-31 17:54:56 -08:00
|
|
|
sha256 = "0q0w1x4aijid8wj7dg1ny9fqwll483f1sqw7kvkskd8q1c52mdsb";
|
2008-08-15 02:49:43 -07:00
|
|
|
};
|
|
|
|
|
2015-12-31 17:54:56 -08:00
|
|
|
nativeBuildInputs = [bison flex];
|
|
|
|
|
|
|
|
buildInputs = [libnetfilter_conntrack libnftnl libmnl];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lmnl -lnftnl"
|
|
|
|
'';
|
|
|
|
|
2013-11-20 10:33:26 -08:00
|
|
|
configureFlags = ''
|
|
|
|
--enable-devel
|
|
|
|
--enable-shared
|
|
|
|
'';
|
2010-05-20 15:11:44 -07:00
|
|
|
|
2008-08-15 02:49:43 -07:00
|
|
|
meta = {
|
|
|
|
description = "A program to configure the Linux IP packet filtering ruleset";
|
|
|
|
homepage = http://www.netfilter.org/projects/iptables/index.html;
|
2010-08-13 16:11:58 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-12-12 14:16:48 -08:00
|
|
|
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
|
|
|
updateWalker = true;
|
|
|
|
inherit version;
|
2008-08-15 02:49:43 -07:00
|
|
|
};
|
|
|
|
}
|