From 444538ca8f4a118dcfb05ec46cce8c6888528425 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 30 Apr 2014 22:48:51 +0200 Subject: [PATCH] syncthing: Bump to 0.8.2. Tested this in two containers running 0.7.1 before. Upgraded fine and kept working without configuration changes. --- pkgs/applications/networking/syncthing/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index 50bc61eeeff0..e658264e5cb9 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "syncthing-${version}"; - version = "0.7.1"; + version = "0.8.2"; src = fetchgit { url = "git://github.com/calmh/syncthing.git"; rev = "refs/tags/v${version}"; - sha256 = "1rja837kimiq15km8cridbm5yxvkm6mkvkwywdi76qf9rm0pcjl1"; + sha256 = "1yhl0mk6f2cyib82jyzwz20iw1l5pxppmlgw5xn9pkmqm53wp4z4"; }; buildInputs = [ go ]; @@ -25,6 +25,7 @@ stdenv.mkDerivation rec { cp -r "./scanner" "./dependencies/src/github.com/calmh/syncthing" cp -r "./mc" "./dependencies/src/github.com/calmh/syncthing" cp -r "./xdr" "./dependencies/src/github.com/calmh/syncthing" + cp -r "./upnp" "./dependencies/src/github.com/calmh/syncthing" export GOPATH="`pwd`/Godeps/_workspace:`pwd`/dependencies"