syncthing: 1.0.1 -> 1.1.0 (#57364)

This commit is contained in:
Mario Rodas
2019-03-12 22:01:12 +01:00
committed by xeji
parent 348a2bc3a5
commit ea0e9147f3
2 changed files with 484 additions and 2 deletions
@@ -3,18 +3,20 @@
let
common = { stname, target, postInstall ? "" }:
buildGoPackage rec {
version = "1.0.1";
version = "1.1.0";
name = "${stname}-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
sha256 = "09qrdh6rvphh6sjyzh3jjil1fkrp9jp8mzrbz9ncqhvqra70f6sw";
sha256 = "1qmrh3c4p5vxzjqd0zdmvcqffq75gl4qfg0s8qpkgvdc7qrzzi7i";
};
goPackagePath = "github.com/syncthing/syncthing";
goDeps = ./deps.nix;
patches = [
./add-stcli-target.patch
];