about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-06-13 15:55:56 +0200
committerGitHub <noreply@github.com>2017-06-13 15:55:56 +0200
commit9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8 (patch)
treef722d2f2335aeb6ff38e380d8287f314db984d02 /pkgs/os-specific
parent5ad7d3106e04f961d0c6fdf05b7a9e79c27c9d12 (diff)
downloadnixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar.gz
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar.bz2
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar.lz
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar.xz
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.tar.zst
nixlib-9d4bf6b1557e7d606fc55cb0bcd8debe88f1aba8.zip
wireguard: 0.0.20170531 -> 0.0.20170613
Simple version bump. Release notes:

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/wireguard/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/wireguard/default.nix b/pkgs/os-specific/linux/wireguard/default.nix
index 696166f3947d..3ccf703370cf 100644
--- a/pkgs/os-specific/linux/wireguard/default.nix
+++ b/pkgs/os-specific/linux/wireguard/default.nix
@@ -6,18 +6,18 @@ assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";
 let
   name = "wireguard-${version}";
 
-  version = "0.0.20170531";
+  version = "0.0.20170613";
 
   src = fetchurl {
     url    = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
-    sha256 = "1k6asxx7qzmxasvdwkvlalvav643fqfbndv80vjkbjqxy6mdkdrf";
+    sha256 = "88ac77569eeb79c517318d58a0954caa0a4d2a6a1694e74c2a3b1c14438ac941";
   };
 
   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 mic92 ];
+    maintainers  = with maintainers; [ ericsagnes mic92 zx2c4 ];
     license      = licenses.gpl2;
     platforms    = platforms.linux;
   };