2017-07-02 01:50:59 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, go, procps, removeReferencesTo }:
|
2017-01-25 13:57:51 +00:00
|
|
|
|
2017-03-09 12:02:46 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-09 02:20:22 +00:00
|
|
|
version = "0.14.44";
|
2016-05-30 09:15:58 +01:00
|
|
|
name = "syncthing-${version}";
|
|
|
|
|
2016-07-27 17:49:43 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-09-26 09:07:14 +01:00
|
|
|
owner = "syncthing";
|
|
|
|
repo = "syncthing";
|
|
|
|
rev = "v${version}";
|
2018-02-09 02:20:22 +00:00
|
|
|
sha256 = "1gdkx6lbzmdz2hqc9slbq41rwgkxmdisnj0iywx4mppmc2b4v6wh";
|
2016-05-30 09:15:58 +01:00
|
|
|
};
|
|
|
|
|
2017-03-09 12:02:46 +00:00
|
|
|
buildInputs = [ go removeReferencesTo ];
|
2016-05-30 09:15:58 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
mkdir -p src/github.com/syncthing
|
|
|
|
ln -s $(pwd) src/github.com/syncthing/syncthing
|
|
|
|
export GOPATH=$(pwd)
|
|
|
|
|
|
|
|
# Syncthing's build.go script expects this working directory
|
|
|
|
cd src/github.com/syncthing/syncthing
|
|
|
|
|
2017-08-14 13:28:11 +01:00
|
|
|
go run build.go -no-upgrade -version v${version} build
|
2016-05-30 09:15:58 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-08-14 13:28:11 +01:00
|
|
|
mkdir -p $out/lib/systemd/{system,user}
|
|
|
|
|
|
|
|
install -Dm755 syncthing $out/bin/syncthing
|
2016-09-26 08:40:21 +01:00
|
|
|
|
|
|
|
'' + lib.optionalString (stdenv.isLinux) ''
|
|
|
|
substitute etc/linux-systemd/system/syncthing-resume.service \
|
2017-05-09 13:58:17 +01:00
|
|
|
$out/lib/systemd/system/syncthing-resume.service \
|
2017-07-02 01:50:59 +01:00
|
|
|
--replace /usr/bin/pkill ${procps}/bin/pkill
|
2016-09-26 08:40:21 +01:00
|
|
|
|
|
|
|
substitute etc/linux-systemd/system/syncthing@.service \
|
2017-05-09 13:58:17 +01:00
|
|
|
$out/lib/systemd/system/syncthing@.service \
|
2016-09-26 08:40:21 +01:00
|
|
|
--replace /usr/bin/syncthing $out/bin/syncthing
|
|
|
|
|
|
|
|
substitute etc/linux-systemd/user/syncthing.service \
|
2017-05-09 13:58:17 +01:00
|
|
|
$out/lib/systemd/user/syncthing.service \
|
2016-09-26 08:40:21 +01:00
|
|
|
--replace /usr/bin/syncthing $out/bin/syncthing
|
2016-05-30 09:15:58 +01:00
|
|
|
'';
|
|
|
|
|
2017-01-13 09:51:04 +00:00
|
|
|
preFixup = ''
|
2017-03-09 12:02:46 +00:00
|
|
|
find $out/bin -type f -exec remove-references-to -t ${go} '{}' '+'
|
2017-01-13 09:51:04 +00:00
|
|
|
'';
|
|
|
|
|
2016-09-26 08:40:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-30 09:15:58 +01:00
|
|
|
homepage = https://www.syncthing.net/;
|
|
|
|
description = "Open Source Continuous File Synchronization";
|
2017-01-03 05:15:29 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ pshendry joko peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
2016-05-30 09:15:58 +01:00
|
|
|
};
|
|
|
|
}
|