summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing012/default.nix
blob: 6f6336eef70935307d46547b46a878aed61580ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "syncthing-${version}";
  version = "0.12.15";
  rev = "v${version}";

  buildFlags = "--tags noupgrade,release";
  
  goPackagePath = "github.com/syncthing/syncthing";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/syncthing/syncthing";
    sha256 = "108w7gvm3nbbsgp3h5p84fj4ba0siaz932i7yyryly486gzvpm43";
  };

  goDeps = ./deps.json;

  postPatch = ''
    # Mostly a cosmetic change
    sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go
  '';
}