summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-01-03 18:06:40 -0500
committerGitHub <noreply@github.com>2017-01-03 18:06:40 -0500
commit3080fcf616999be5d94ca81a0ecaa13824558f17 (patch)
treeefaa9a5ad001c3980d6d49488323ed815afdf4ca /pkgs/applications/networking
parent17b7eb22c3e9f00764b7cc0ea17a931cb53da4fe (diff)
parentd997ea6a380fe2e8f7e336fd82b470b56c01d04b (diff)
downloadnixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar.gz
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar.bz2
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar.lz
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar.xz
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.tar.zst
nixlib-3080fcf616999be5d94ca81a0ecaa13824558f17.zip
Merge pull request #21602 from peterhoeg/u/st_1418
syncthing: 0.14.17 -> 0.14.18
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 628e645ab608..8e568798df81 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -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;
   };
 }