e9d91ab5f3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/nftables/versions. These checks were done: - built on NixOS - /nix/store/dsjhy8fws8j0awprkf894mrl2rz6a53q-nftables-0.9.0/bin/nft passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 0.9.0 with grep in /nix/store/dsjhy8fws8j0awprkf894mrl2rz6a53q-nftables-0.9.0 - directory tree listing: https://gist.github.com/2aa6bc0f10c5a26cd1ad6d17106daad5 - du listing: https://gist.github.com/e87dd21c1ba327481635ea9b36b9aa67
31 lines
920 B
Nix
31 lines
920 B
Nix
{ stdenv, fetchurl, pkgconfig, docbook2x, docbook_xml_dtd_45
|
|
, flex, bison, libmnl, libnftnl, gmp, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.0";
|
|
name = "nftables-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://netfilter.org/projects/nftables/files/${name}.tar.bz2";
|
|
sha256 = "14bygs6vg2v448cw5r4pxqi8an29hw0m9vab8hpmgjmrzjsq30dd";
|
|
};
|
|
|
|
configureFlags = [
|
|
"CONFIG_MAN=y"
|
|
"DB2MAN=docbook2man"
|
|
];
|
|
|
|
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
|
|
|
|
nativeBuildInputs = [ pkgconfig docbook2x flex bison ];
|
|
buildInputs = [ libmnl libnftnl gmp readline ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
|
homepage = http://netfilter.org/projects/nftables;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|