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