2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchurl, bison, flex, pkgconfig, pruneLibtoolFiles
|
2018-11-29 13:44:29 -08:00
|
|
|
, libnetfilter_conntrack, libnftnl, libmnl, libpcap }:
|
2008-08-15 02:49:43 -07:00
|
|
|
|
2009-07-23 11:16:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-28 15:17:46 -07:00
|
|
|
pname = "iptables";
|
|
|
|
version = "1.8.3";
|
2008-08-15 02:49:43 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-28 15:17:46 -07:00
|
|
|
url = "https://www.netfilter.org/projects/${pname}/files/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "106xkkg5crsscjlinxvqvprva23fwwqfgrzl8m2nn841841sqg52";
|
2008-08-15 02:49:43 -07:00
|
|
|
};
|
|
|
|
|
2018-12-09 08:12:53 -08:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig pruneLibtoolFiles ];
|
2015-12-31 17:54:56 -08:00
|
|
|
|
2018-11-29 13:44:29 -08:00
|
|
|
buildInputs = [ libnetfilter_conntrack libnftnl libmnl libpcap ];
|
2015-12-31 17:54:56 -08:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lmnl -lnftnl"
|
|
|
|
'';
|
|
|
|
|
2018-07-25 14:44:21 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-devel"
|
|
|
|
"--enable-shared"
|
2018-11-29 13:44:29 -08:00
|
|
|
"--enable-bpf-compiler"
|
2018-07-25 14:44:21 -07:00
|
|
|
];
|
2010-05-20 15:11:44 -07:00
|
|
|
|
2017-01-21 17:20:00 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2008-08-15 02:49:43 -07:00
|
|
|
description = "A program to configure the Linux IP packet filtering ruleset";
|
2018-11-29 13:44:29 -08:00
|
|
|
homepage = https://www.netfilter.org/projects/iptables/index.html;
|
2017-01-21 17:20:00 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-08-29 15:34:22 -07:00
|
|
|
license = licenses.gpl2;
|
2018-11-29 13:44:29 -08:00
|
|
|
downloadPage = "https://www.netfilter.org/projects/iptables/files/";
|
2014-12-12 14:16:48 -08:00
|
|
|
updateWalker = true;
|
|
|
|
inherit version;
|
2008-08-15 02:49:43 -07:00
|
|
|
};
|
|
|
|
}
|