mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
903 B
Nix
34 lines
903 B
Nix
{stdenv, fetchurl, bison, flex, libnetfilter_conntrack, libnftnl, libmnl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iptables-${version}";
|
|
version = "1.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
|
|
sha256 = "0q0w1x4aijid8wj7dg1ny9fqwll483f1sqw7kvkskd8q1c52mdsb";
|
|
};
|
|
|
|
nativeBuildInputs = [bison flex];
|
|
|
|
buildInputs = [libnetfilter_conntrack libnftnl libmnl];
|
|
|
|
preConfigure = ''
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lmnl -lnftnl"
|
|
'';
|
|
|
|
configureFlags = ''
|
|
--enable-devel
|
|
--enable-shared
|
|
'';
|
|
|
|
meta = {
|
|
description = "A program to configure the Linux IP packet filtering ruleset";
|
|
homepage = http://www.netfilter.org/projects/iptables/index.html;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
|
updateWalker = true;
|
|
inherit version;
|
|
};
|
|
}
|