Skip to content

Commit

Permalink
ip2unix: 2.0.1 -> 2.0.2
Browse files Browse the repository at this point in the history
This is just a small bugfix release (essentially adds two lines of code)
which fixes a segfault if using with a program that doesn't pass a
sockaddr buffer to accept() or accept4().

The reason I didn't cherry-pick this from master is because the version
there is version 2.1.x and I'd like to only backport fixes to NixOS
stable branches, so I released version 2.0.2 upstream specifically for
this.

Signed-off-by: aszlig <aszlig@nix.build>
  • Loading branch information
aszlig committed Sep 20, 2019
1 parent 7ba2943 commit 021d733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/ip2unix/default.nix
Expand Up @@ -5,13 +5,13 @@

stdenv.mkDerivation rec {
name = "ip2unix-${version}";
version = "2.0.1";
version = "2.0.2";

src = fetchFromGitHub {
owner = "nixcloud";
repo = "ip2unix";
rev = "v${version}";
sha256 = "1x2nfv15a1hg8vrw5vh8fqady12v9hfrb4p3cfg0ybx52y0xs48a";
sha256 = "1wpcp4dym9xgg9n3h3w27il0xiv7y7zvzz65g8z9wax51qysch0d";
};

nativeBuildInputs = [
Expand Down

0 comments on commit 021d733

Please sign in to comment.