Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7ba2943d72b3
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 021d733ea3f8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2019

  1. ip2unix: 2.0.1 -> 2.0.2

    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>
    aszlig committed Sep 20, 2019

    Partially verified

    This commit is signed with the committer’s verified signature.
    domenkozar’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    021d733 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/networking/ip2unix/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/ip2unix/default.nix
Original file line number Diff line number Diff line change
@@ -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 = [