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: a95db4c83e78
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aa25fb3de4da
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 13, 2018

  1. wireguard: 0.0.20180925 -> 0.0.20181006

    (cherry picked from commit 011a463)
    lukateras authored and fpletz committed Oct 13, 2018

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    ce2715b View commit details
  2. wireguard-go: 0.0.20180613 -> 0.0.20181001

    (cherry picked from commit fed0a4e)
    lukateras authored and fpletz committed Oct 13, 2018

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    9787b0c View commit details
  3. wireguard: 0.0.20181006 -> 0.0.20181007

    (cherry picked from commit 97d2779)
    fpletz committed Oct 13, 2018
    Copy the full SHA
    aa25fb3 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/tools/networking/wireguard-go/default.nix
  2. +2 −2 pkgs/tools/networking/wireguard-tools/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/wireguard-go/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoPackage rec {
name = "wireguard-go-${version}";
version = "0.0.20180613";
version = "0.0.20181001";

goPackagePath = "git.zx2c4.com/wireguard-go";

src = fetchzip {
url = "https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-${version}.tar.xz";
sha256 = "0pvg7s1kyn48az54lsnyn1ryhjk0flmpz5dx520rc94g6xn88fic";
sha256 = "0yh9f58xn8kcq3wgx2s8j19k2h1vbmg70fn5gvw9k98f5mzynls3";
};

goDeps = ./deps.nix;
4 changes: 2 additions & 2 deletions pkgs/tools/networking/wireguard-tools/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ with stdenv.lib;

stdenv.mkDerivation rec {
name = "wireguard-tools-${version}";
version = "0.0.20180925";
version = "0.0.20181007";

src = fetchzip {
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
sha256 = "10k63ld0f5q5aykpcrg9m3xmrsf3qmlkvhiv18q73hnky2cjfx62";
sha256 = "1nrhwnccs6sqq1qs7yhxqb989inrc9n2saibpqs6ga6gb0pvpac6";
};

sourceRoot = "source/src/tools";