summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2017-01-25 21:57:51 +0800
committerRobin Gloster <mail@glob.in>2017-01-25 20:27:22 +0100
commit0a4943a38144808a8989a40dc6e1bad5a62e1940 (patch)
tree1e14f7e4f4abb4fbabf5f646218893f784b2b3fd /pkgs/applications/networking/syncthing
parent9371acd80f1dfc99b58eee83895e7121457d305c (diff)
downloadnixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar.gz
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar.bz2
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar.lz
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar.xz
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.tar.zst
nixpkgs-0a4943a38144808a8989a40dc6e1bad5a62e1940.zip
syncthing: 0.14.19 -> 0.14.21
Diffstat (limited to 'pkgs/applications/networking/syncthing')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 16e3c61bcc1..59c0f6d92b0 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,20 +1,19 @@
 { stdenv, lib, fetchFromGitHub, go, pkgs }:
+
 let
   removeExpr = ref: ''
     sed -i "s,${ref},$(echo "${ref}" | sed "s,$NIX_STORE/[^-]*,$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,"),g" \
   '';
 
-in
-
-stdenv.mkDerivation rec {
-  version = "0.14.19";
+in stdenv.mkDerivation rec {
+  version = "0.14.21";
   name = "syncthing-${version}";
 
   src = fetchFromGitHub {
     owner  = "syncthing";
     repo   = "syncthing";
     rev    = "v${version}";
-    sha256 = "16wpw9ndx3x37mfnymp2fx9n2az9ibyr61zgq3mh2mszzzl7bkcg";
+    sha256 = "0gxv4r7zg2rxjj0q8iiq3p5s75kwshcy6drjv65k8p2778bbvcjl";
   };
 
   buildInputs = [ go ];