2014-12-17 22:44:30 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, docbook2x, docbook_xml_dtd_45
|
2017-01-24 10:46:56 +00:00
|
|
|
, flex, bison, libmnl, libnftnl, gmp, readline }:
|
2014-08-24 00:16:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-28 02:15:24 +01:00
|
|
|
version = "0.9.0";
|
2018-03-12 08:05:19 +00:00
|
|
|
name = "nftables-${version}";
|
2014-08-24 00:16:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://netfilter.org/projects/nftables/files/${name}.tar.bz2";
|
2018-06-28 02:15:24 +01:00
|
|
|
sha256 = "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd";
|
2014-08-24 00:16:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"CONFIG_MAN=y"
|
|
|
|
"DB2MAN=docbook2man"
|
|
|
|
];
|
|
|
|
|
|
|
|
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
|
|
|
|
|
2017-01-22 01:21:07 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig docbook2x flex bison ];
|
2017-01-24 10:46:56 +00:00
|
|
|
buildInputs = [ libmnl libnftnl gmp readline ];
|
2014-08-24 00:16:06 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
2014-08-24 00:16:06 +01:00
|
|
|
homepage = http://netfilter.org/projects/nftables;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|