3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #21602 from peterhoeg/u/st_1418

syncthing: 0.14.17 -> 0.14.18
This commit is contained in:
Graham Christensen 2017-01-03 18:06:40 -05:00 committed by GitHub
commit 3080fcf616

View file

@ -1,14 +1,14 @@
{ stdenv, lib, fetchFromGitHub, go, pkgs }:
stdenv.mkDerivation rec {
version = "0.14.17";
version = "0.14.18";
name = "syncthing-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
sha256 = "0l220jnm8xwfc5jrznan15290al05bim5yyy4wngj9c55av6mlzq";
sha256 = "099r1n9awznv17ac1fm4ff6az40bvk6xxwaw8x8fx7ikqi1wv8vp";
};
buildInputs = [ go ];
@ -45,8 +45,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://www.syncthing.net/;
description = "Open Source Continuous File Synchronization";
license = stdenv.lib.licenses.mpl20;
maintainers = with stdenv.lib.maintainers; [ pshendry joko peterhoeg ];
platforms = stdenv.lib.platforms.unix;
license = licenses.mpl20;
maintainers = with maintainers; [ pshendry joko peterhoeg ];
platforms = platforms.unix;
};
}