2017-02-03 12:07:07 +00:00
|
|
|
{ stdenv, fetchurl, bison, flex, pkgconfig
|
2017-01-22 01:20:00 +00:00
|
|
|
, libnetfilter_conntrack, libnftnl, libmnl }:
|
2008-08-15 10:49:43 +01:00
|
|
|
|
2009-07-23 19:16:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-12 22:16:48 +00:00
|
|
|
name = "iptables-${version}";
|
2018-02-04 00:47:00 +00:00
|
|
|
version = "1.6.2";
|
2008-08-15 10:49:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
|
2018-02-04 00:47:00 +00:00
|
|
|
sha256 = "0crp0lvh5m2f15pr8cw97h8yb8zjj10x95zj06j46cr68vx2vl2m";
|
2008-08-15 10:49:43 +01:00
|
|
|
};
|
|
|
|
|
2017-02-03 12:07:07 +00:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
2016-01-01 01:54:56 +00:00
|
|
|
|
2017-01-22 01:20:00 +00:00
|
|
|
buildInputs = [ libnetfilter_conntrack libnftnl libmnl ];
|
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"
|
|
|
|
];
|
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";
|
|
|
|
homepage = http://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;
|
2014-12-12 22:16:48 +00:00
|
|
|
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
|
|
|
updateWalker = true;
|
|
|
|
inherit version;
|
2008-08-15 10:49:43 +01:00
|
|
|
};
|
|
|
|
}
|