about summary refs log tree commit diff
path: root/pkgs/tools/networking/tinc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-06-12 21:04:33 +0100
committerGitHub <noreply@github.com>2018-06-12 21:04:33 +0100
commita7a53d0feabacfd28c3bc9afac2f6f24e0d5cd1f (patch)
tree044705572bf714aea9bce0874422817c42f84942 /pkgs/tools/networking/tinc
parent5f116f189e415352c8138ffea841d0dcec6ac900 (diff)
parent1677759a7bb48b37ab101a1c31a7a2641ab90c35 (diff)
Merge pull request #41899 from Lassulus/tinc_stable
tinc: 1.0.33 -> 10.0.34
Diffstat (limited to 'pkgs/tools/networking/tinc')
-rw-r--r--pkgs/tools/networking/tinc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/tinc/default.nix b/pkgs/tools/networking/tinc/default.nix
index 4f6bec9c00845..9ef5ff2a4f085 100644
--- a/pkgs/tools/networking/tinc/default.nix
+++ b/pkgs/tools/networking/tinc/default.nix
@@ -1,12 +1,12 @@
 {stdenv, fetchurl, lzo, openssl, zlib}:
 
 stdenv.mkDerivation rec {
-  version = "1.0.33";
+  version = "1.0.34";
   name = "tinc-${version}";
 
   src = fetchurl {
     url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
-    sha256 = "1x0hpfz13vn4pl6dcpnls6xq3rfcbdsg90awcfn53ijb8k35svvz";
+    sha256 = "1nngdp2x5kykrgh13q5wjry8m82vahqv53csvlb22ifxvrhrnfn0";
   };
 
   buildInputs = [ lzo openssl zlib ];