Merge pull request #66839 from Izorkin/nftables

nftables: 0.9.0 -> 0.9.1
This commit is contained in:
Marek Mahut 2019-08-18 21:56:11 +02:00 committed by GitHub
commit ab2cfaf9a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,28 +1,35 @@
{ stdenv, fetchurl, pkgconfig, docbook2x, docbook_xml_dtd_45 { stdenv, fetchurl, pkgconfig, bison, flex
, flex, bison, libmnl, libnftnl, gmp, readline }: , libmnl, libnftnl, libpcap
, gmp, jansson, readline
, withXtables ? false , iptables
}:
with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.9.0"; version = "0.9.1";
name = "nftables-${version}"; name = "nftables-${version}";
src = fetchurl { src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${name}.tar.bz2"; url = "https://netfilter.org/projects/nftables/files/${name}.tar.bz2";
sha256 = "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd"; sha256 = "1kjg3dykf2aw76d76viz1hm0rav57nfbdwlngawgn2slxmlbplza";
}; };
configureFlags = [ configureFlags = [
"CONFIG_MAN=y" "--disable-man-doc"
"DB2MAN=docbook2man" "--with-json"
]; ] ++ optional withXtables "--with-xtables";
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml"; nativeBuildInputs = [ pkgconfig bison flex ];
nativeBuildInputs = [ pkgconfig docbook2x flex bison ]; buildInputs = [
buildInputs = [ libmnl libnftnl gmp readline ]; libmnl libnftnl libpcap
gmp readline jansson
] ++ optional withXtables iptables;
meta = with stdenv.lib; { meta = {
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework"; description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
homepage = http://netfilter.org/projects/nftables; homepage = "https://netfilter.org/projects/nftables/";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
}; };