* syncthing: 0.14.52 -> 1.0.0

This commit is contained in:
Alex Branham 2019-01-02 14:39:06 -06:00
parent 45779f013c
commit 143ce1d1dd
No known key found for this signature in database
GPG Key ID: 1E4227A253E99AC7

View File

@ -3,24 +3,20 @@
let let
common = { stname, target, postInstall ? "" }: common = { stname, target, postInstall ? "" }:
buildGoPackage rec { buildGoPackage rec {
version = "0.14.54"; version = "1.0.0";
name = "${stname}-${version}"; name = "${stname}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "syncthing"; owner = "syncthing";
repo = "syncthing"; repo = "syncthing";
rev = "v${version}"; rev = "v${version}";
sha256 = "0l73ka71l6gxv46wmlyzj8zhfpfj3vf6nv6x3x0z25ymr3wa2fza"; sha256 = "1qkjnij9jw3d4pjkdr6npz5ps604qg6g36jnsng0k1r2qnrydnwh";
}; };
goPackagePath = "github.com/syncthing/syncthing"; goPackagePath = "github.com/syncthing/syncthing";
patches = [ patches = [
./add-stcli-target.patch ./add-stcli-target.patch
(fetchpatch {
url = "https://github.com/syncthing/syncthing/commit/e7072feeb7669948c3e43f55d21aec15481c33ba.patch";
sha256 = "1pcybww2vdx45zhd1sd53v7fp40vfgkwqgy8flv7hxw2paq8hxd4";
})
]; ];
BUILD_USER="nix"; BUILD_USER="nix";
BUILD_HOST="nix"; BUILD_HOST="nix";