summary refs log tree commit diff
path: root/pkgs/applications/networking/syncthing012/default.nix
blob: cd6fcc28a50a1cc34ce7d4c02e3faaa5401010ab (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
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

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

  goPackagePath = "github.com/syncthing/syncthing";

  src = fetchFromGitHub {
    inherit rev;
    owner = "syncthing";
    repo = "syncthing";
    sha256 = "0g4sj509h45iq6g7b0pl88rbbn7c7s01774yjc6bl376x1xrl6a1";
  };

  goDeps = ./deps.nix;

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

  preBuild = ''
    export buildFlagsArray+=("-tags" "noupgrade release")
  '';

  meta = {
    knownVulnerabilities = [ "CVE-2017-1000420" ];
    homepage = https://www.syncthing.net/;
    description = "Open Source Continuous File Synchronization";
    license = stdenv.lib.licenses.mpl20;
    platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
  };
}