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
|
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
yaml-cpp,
systemd,
python313Packages,
asciidoc,
libxslt,
docbook_xml_dtd_45,
docbook_xsl,
libxml2,
docbook5,
mesonEmulatorHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ip2unix";
version = "2.2.2";
src = fetchFromGitHub {
owner = "nixcloud";
repo = "ip2unix";
rev = "v${finalAttrs.version}";
hash = "sha256-QWhOO2tHl8fwXy0k9W+I/XHPJI8OJyexMsgOSJes37s";
};
nativeBuildInputs = [
meson
ninja
pkg-config
asciidoc
libxslt.bin
docbook_xml_dtd_45
docbook_xsl
libxml2.bin
docbook5
python313Packages.pytest
python313Packages.pytest-timeout
systemd
]
++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ mesonEmulatorHook ];
buildInputs = [ yaml-cpp ];
doCheck = true;
doInstallCheck = true;
installCheckPhase = ''
found=0
for man in "$out/share/man/man1"/ip2unix.1*; do
test -s "$man" && found=1
done
if [ $found -ne 1 ]; then
echo "ERROR: Manual page hasn't been generated." >&2
exit 1
fi
'';
meta = {
homepage = "https://github.com/nixcloud/ip2unix";
description = "Turn IP sockets into Unix domain sockets";
platforms = lib.platforms.linux;
license = lib.licenses.lgpl3;
maintainers = [ lib.maintainers.aszlig ];
mainProgram = "ip2unix";
};
})
|