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

Commits on Oct 13, 2018

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    011a463 View commit details
  2. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    fed0a4e View commit details
  3. Merge pull request #48315 from transumption/201810/wireguard-bump

    wireguard: 0.0.20180925 -> 0.0.20181006
    Mic92 authored Oct 13, 2018
    Copy the full SHA
    576f3b1 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.20181006";

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

sourceRoot = "source/src/tools";