linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / ip2unix / default.nix
blob992ee324cc50c18915812394af719e8f7bf1fb52
1 { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, libyamlcpp, systemd
2 , python3Packages, asciidoc, libxslt, docbook_xml_dtd_45, docbook_xsl
3 , libxml2, docbook5
4 }:
6 stdenv.mkDerivation rec {
7   pname = "ip2unix";
8   version = "2.1.3";
10   src = fetchFromGitHub {
11     owner = "nixcloud";
12     repo = "ip2unix";
13     rev = "v${version}";
14     sha256 = "19c449h60b2m1d8kawnhpi4y9y4ddm24jmlh8kilqmx8m5l2khr6";
15   };
17   nativeBuildInputs = [
18     meson ninja pkg-config asciidoc libxslt.bin docbook_xml_dtd_45 docbook_xsl
19     libxml2.bin docbook5 python3Packages.pytest python3Packages.pytest-timeout
20     systemd
21   ];
23   buildInputs = [ libyamlcpp ];
25   doCheck = true;
27   doInstallCheck = true;
28   installCheckPhase = ''
29     found=0
30     for man in "$out/share/man/man1"/ip2unix.1*; do
31       test -s "$man" && found=1
32     done
33     if [ $found -ne 1 ]; then
34       echo "ERROR: Manual page hasn't been generated." >&2
35       exit 1
36     fi
37   '';
39   meta = {
40     homepage = "https://github.com/nixcloud/ip2unix";
41     description = "Turn IP sockets into Unix domain sockets";
42     platforms = lib.platforms.linux;
43     license = lib.licenses.lgpl3;
44     maintainers = [ lib.maintainers.aszlig ];
45   };