1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
{
lib,
stdenv,
fetchurl,
pkg-config,
bison,
flex,
asciidoc,
libxslt,
findXMLCatalogs,
docbook_xml_dtd_45,
docbook_xsl,
libmnl,
libnftnl,
libpcap,
gmp,
jansson,
autoreconfHook,
withDebugSymbols ? false,
withCli ? true,
libedit,
withXtables ? true,
iptables,
nixosTests,
gitUpdater,
ncurses,
}:
stdenv.mkDerivation rec {
version = "1.1.6";
pname = "nftables";
src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.xz";
hash = "sha256-NykxvahVazEGNqL5AgrccQ+bq2b0fv4M6Qv/gArCUww=";
};
patches = [
(fetchurl {
name = "musl.patch";
url = "https://lore.kernel.org/netfilter-devel/20241219231001.1166085-2-hi@alyssa.is/raw";
hash = "sha256-7vMBIoDWcI/JBInYP5yYWp8BnYbATRfMTxqyZr2L9Sk=";
})
# Following 4 commits fix reproducibility.
(fetchurl {
name = "0001-build-fix-.-configure-with-non-bash-shell.patch";
url = "https://git.netfilter.org/nftables/patch/?id=2e3c68f26d5bd60c8ea7467fa9018c282a7d8c47";
hash = "sha256-gJi6Q6mpURynzpnTFs1VJmZ+SpnNhyOrCzKarJmu/6w=";
})
(fetchurl {
name = "0002-build-simplify-the-instantation-of-nftversion.h.patch";
url = "https://git.netfilter.org/nftables/patch/?id=2a0ec8a7246e5c5eb85270e3d4de43e20a00c577";
hash = "sha256-gzlMHaZTXCqR8IcccIsLaMZie3CaMEPa4lnGr/x7b/o=";
})
(fetchurl {
name = "0003-build-generate-build-time-stamp-once-at-configure.patch";
url = "https://git.netfilter.org/nftables/patch/?id=b92571cc59ce49fdd9fe2daac9350529adfb2424";
hash = "sha256-03nexKi/tH1pGNor2/q+Q5ps9+YQRGBbR/DR164Efpo=";
})
(fetchurl {
name = "0004-build-support-SOURCE_DATE_EPOCH-for-build-time-stamp.patch";
url = "https://git.netfilter.org/nftables/patch/?id=ca86f206c92704170a295b8dc7a41f6448835dde";
hash = "sha256-vK/dsi9YXzEg2iShfbhnwlJJC27LTBA9fIjyJySoeFI=";
})
];
nativeBuildInputs = [
autoreconfHook
pkg-config
bison
flex
asciidoc
docbook_xml_dtd_45
docbook_xsl
findXMLCatalogs
libxslt
]
++ lib.optional stdenv.hostPlatform.isStatic ncurses;
buildInputs = [
libmnl
libnftnl
libpcap
gmp
jansson
]
++ lib.optional withCli libedit
++ lib.optional withXtables iptables;
env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isStatic "-lncursesw";
configureFlags = [
"--with-json"
(lib.withFeatureAs withCli "cli" "editline")
]
++ lib.optional (!withDebugSymbols) "--disable-debug"
++ lib.optional withXtables "--with-xtables";
enableParallelBuilding = true;
passthru.tests = {
inherit (nixosTests) firewall-nftables;
nat = { inherit (nixosTests.nat.nftables) firewall standalone; };
};
passthru.updateScript = gitUpdater {
url = "https://git.netfilter.org/nftables";
rev-prefix = "v";
};
meta = {
description = "Project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
homepage = "https://netfilter.org/projects/nftables/";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ izorkin ];
mainProgram = "nft";
};
}
|