Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 282041fb7b2c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fcf2d5745e80
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 21, 2019

  1. ip2unix: 2.0.1 -> 2.1.0

    Upstream changes:
    
      * Support AF_INET and AF_INET6 sockets for systemd socket activation.
    
    This basically makes ip2unix generally usable for turning any (not
    statically linked) application into systemd socket activated services.
    
    Signed-off-by: aszlig <aszlig@nix.build>
    aszlig committed Jun 21, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    fcf2d57 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.1.0";

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

nativeBuildInputs = [