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: 19a076b9ccd8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 79ecfb515f85
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 29, 2017

  1. wireguard: 0.0.20170613 -> 0.0.20170629

    Simple version bump.
    
    Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
    zx2c4 authored Jun 29, 2017
    Copy the full SHA
    9ffccc7 View commit details

Commits on Jun 30, 2017

  1. Merge pull request #26972 from zx2c4/patch-5

    wireguard: 0.0.20170613 -> 0.0.20170629
    Mic92 authored Jun 30, 2017
    Copy the full SHA
    79ecfb5 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/os-specific/linux/wireguard/default.nix
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/wireguard/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";
let
name = "wireguard-${version}";

version = "0.0.20170613";
version = "0.0.20170629";

src = fetchurl {
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
sha256 = "88ac77569eeb79c517318d58a0954caa0a4d2a6a1694e74c2a3b1c14438ac941";
sha256 = "51c44624f20eaff96780845214f85491c0c7330598633cd180bb2a6547e5d2b2";
};

meta = with stdenv.lib; {