syncthing: 0.14.0 -> 0.14.2 (#17274)

* Update syncthing from 0.14.0 to 0.14.2
* Use fetchFromGitHub instead of fetchgit
* Add joko to package maintainers
This commit is contained in:
jokogr 2016-07-27 19:49:43 +03:00 committed by Rok Garbas
parent 251a1ccf55
commit 54e870e3b1

View File

@ -1,13 +1,14 @@
{ stdenv, fetchgit, go }:
{ stdenv, fetchFromGitHub, go }:
stdenv.mkDerivation rec {
version = "0.14.0";
version = "0.14.2";
name = "syncthing-${version}";
src = fetchgit {
url = https://github.com/syncthing/syncthing;
rev = "refs/tags/v${version}";
sha256 = "15l3q3r6i3q95i474winswx4y149b5ic7xhpnj52s78fxd4va2q2";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
sha256 = "0is4f1r3im2bbmbca9fafzxffikxaf86vd6f851831fk5wi4pzw9";
};
buildInputs = [ go ];
@ -32,7 +33,7 @@ stdenv.mkDerivation rec {
homepage = https://www.syncthing.net/;
description = "Open Source Continuous File Synchronization";
license = stdenv.lib.licenses.mpl20;
maintainers = with stdenv.lib.maintainers; [pshendry];
maintainers = with stdenv.lib.maintainers; [ pshendry joko ];
platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
};
}