67325b12c6
Upstream fixes: - Pass linker version script to the linker instead of the compiler. - Compile with `-fPIC` again (regression from version 2.1.2). - Out of bounds array access in `globpath`. - Handling of `epoll_ctl` calls (they're now replayed after replacing socket). - GCC 10 build errors and Clang warnings. While most of these fixes are more relevant for other distros, the linker script fix is actually a regression existing since a long time (version 1.x) and caused libip2unix to expose way too many symbols. Built and tested on i686-linux and x86_64-linux. Signed-off-by: aszlig <aszlig@nix.build>
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, libyamlcpp, systemd
|
|
, python3Packages, asciidoc, libxslt, docbook_xml_dtd_45, docbook_xsl
|
|
, libxml2, docbook5
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ip2unix";
|
|
version = "2.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nixcloud";
|
|
repo = "ip2unix";
|
|
rev = "v${version}";
|
|
sha256 = "19c449h60b2m1d8kawnhpi4y9y4ddm24jmlh8kilqmx8m5l2khr6";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig asciidoc libxslt.bin docbook_xml_dtd_45 docbook_xsl
|
|
libxml2.bin docbook5 python3Packages.pytest python3Packages.pytest-timeout
|
|
systemd
|
|
];
|
|
|
|
buildInputs = [ libyamlcpp ];
|
|
|
|
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 = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
maintainers = [ stdenv.lib.maintainers.aszlig ];
|
|
};
|
|
}
|