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

Commits on Jun 30, 2017

  1. wireguard: 0.0.20170531 -> 0.0.20170613

    Simple version bump. Release notes:
    
    Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
    (cherry picked from commit 9d4bf6b)
    zx2c4 authored and Mic92 committed Jun 30, 2017
    Copy the full SHA
    03a00c3 View commit details
  2. wireguard: 0.0.20170613 -> 0.0.20170629

    Simple version bump.
    
    Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
    (cherry picked from commit 9ffccc7)
    zx2c4 authored and Mic92 committed Jun 30, 2017
    Copy the full SHA
    ce3a705 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/os-specific/linux/wireguard/default.nix
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/wireguard/default.nix
Original file line number Diff line number Diff line change
@@ -6,18 +6,18 @@ assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.18";
let
name = "wireguard-${version}";

version = "0.0.20170531";
version = "0.0.20170629";

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

meta = with stdenv.lib; {
homepage = https://www.wireguard.io/;
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
description = "A prerelease of an experimental VPN tunnel which is not to be depended upon for security";
maintainers = with maintainers; [ ericsagnes ];
maintainers = with maintainers; [ ericsagnes mic92 zx2c4 ];
license = licenses.gpl2;
platforms = platforms.linux;
};