summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2020-06-01 05:46:35 +0200
committeraszlig <aszlig@nix.build>2020-06-01 05:51:00 +0200
commit67325b12c641378d622051b73ada8ae808ba318d (patch)
tree50403f54286784833ad767635a2621cae63c7546
parent6756194042c8693455f033ebf6f4e07672e6a2fb (diff)
downloadnixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar.gz
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar.bz2
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar.lz
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar.xz
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.tar.zst
nixpkgs-67325b12c641378d622051b73ada8ae808ba318d.zip
ip2unix: 2.1.2 -> 2.1.3
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>
-rw-r--r--pkgs/tools/networking/ip2unix/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/ip2unix/default.nix b/pkgs/tools/networking/ip2unix/default.nix
index 1d4a6a5545f..269dd0f1f34 100644
--- a/pkgs/tools/networking/ip2unix/default.nix
+++ b/pkgs/tools/networking/ip2unix/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation rec {
   pname = "ip2unix";
-  version = "2.1.2";
+  version = "2.1.3";
 
   src = fetchFromGitHub {
     owner = "nixcloud";
     repo = "ip2unix";
     rev = "v${version}";
-    sha256 = "1ci0k3zy3hjkg65ah5h75mfvrd578xf2z1449xmgjm3iz3d6kqs2";
+    sha256 = "19c449h60b2m1d8kawnhpi4y9y4ddm24jmlh8kilqmx8m5l2khr6";
   };
 
   nativeBuildInputs = [