summary refs log tree commit diff
path: root/pkgs/tools/networking/ip2unix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-12-26 19:36:49 +0100
committeraszlig <aszlig@nix.build>2018-12-26 19:36:49 +0100
commitb0f9e472712b66613ac1f7703d3c914f35f7a1af (patch)
treee03f08cda55a2531986fd0b949f9cb8090eca360 /pkgs/tools/networking/ip2unix
parenta2fe6bca05f9d70337d04c0feaf7709a1d6c574c (diff)
downloadnixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar.gz
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar.bz2
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar.lz
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar.xz
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.tar.zst
nixpkgs-b0f9e472712b66613ac1f7703d3c914f35f7a1af.zip
ip2unix: 1.2.0 -> 2.0.0
New upstream features:

  - New ignore rule option, which prevents conversion to Unix socket.
  - A way to increase the verbosity via the -v command line argument.
  - Reams of log messages in addition to the FATAL errors we had so far.
  - Use Syslog format for logging if stderr is a socket.
  - Set FD_CLOEXEC on systemd socket file descriptors as soon as they're
    associated.

Upstream fixes:

  - Use right endian conversion functions in port matching.
  - Pass is_unix to child socket on accept to prevent accidentally
    replacing an already converted Unix socket by a new Unix socket. The
    latter would be a socket that's not accepted, which would eventually
    lead to an error.
  - Correctly handle setsockopts used with other levels than SOL_SOCKET.

Upstream changes:

  - Improve wording and add more descriptions in README and manpage.
  - The implementation for fetching systemd sockets now no longer uses
    libsystemd, thus the build-time dependency is no longer required.
  - New serialiser for passing rules to the preloaded library in a more
    compact form instead of using YAML, so it's less likely that we'll
    hit the maximum stack size.
  - Systemd sockets are now associated during rule initialisation and
    thus behave more predictable in complex setups.

On our side, the dependency on systemd is only needed for running the
tests, as it uses the systemd-socket-activate helper. Socket association
is now done by ip2unix directly and doesn't rely on libsystemd anymore.

Built and tested on i686-linux and x86_64-linux.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/tools/networking/ip2unix')
-rw-r--r--pkgs/tools/networking/ip2unix/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/networking/ip2unix/default.nix b/pkgs/tools/networking/ip2unix/default.nix
index 1fa1531d183..a37626c14da 100644
--- a/pkgs/tools/networking/ip2unix/default.nix
+++ b/pkgs/tools/networking/ip2unix/default.nix
@@ -5,21 +5,22 @@
 
 stdenv.mkDerivation rec {
   name = "ip2unix-${version}";
-  version = "1.2.0";
+  version = "2.0.0";
 
   src = fetchFromGitHub {
     owner = "nixcloud";
     repo = "ip2unix";
     rev = "v${version}";
-    sha256 = "0blrhcmska06ydkl15jjgblygkwrimdnbaq3hhifgmffymfk2652";
+    sha256 = "0xxwx1ip5jhkq93b91gcqd1i4njlvl9c4vjzijbdhjrrzz971iwk";
   };
 
   nativeBuildInputs = [
     meson ninja pkgconfig asciidoc libxslt.bin docbook_xml_dtd_45 docbook_xsl
     libxml2.bin docbook5 python3Packages.pytest python3Packages.pytest-timeout
+    systemd
   ];
 
-  buildInputs = [ libyamlcpp systemd ];
+  buildInputs = [ libyamlcpp ];
 
   doCheck = true;