2023-03-21 12:05:38 +00:00
|
|
|
{ pkgsBuildBuild
|
|
|
|
, go
|
|
|
|
, buildGoModule
|
|
|
|
, stdenv
|
|
|
|
, lib
|
|
|
|
, procps
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
, autoSignDarwinBinariesHook
|
|
|
|
}:
|
2017-01-25 13:57:51 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
let
|
2018-12-11 17:35:44 +00:00
|
|
|
common = { stname, target, postInstall ? "" }:
|
2019-08-10 11:01:42 +00:00
|
|
|
buildGoModule rec {
|
2021-04-06 07:12:19 +00:00
|
|
|
pname = stname;
|
2023-11-15 14:56:47 +00:00
|
|
|
version = "1.26.1";
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-05-09 04:13:57 +00:00
|
|
|
owner = "syncthing";
|
|
|
|
repo = "syncthing";
|
|
|
|
rev = "v${version}";
|
2023-11-15 14:56:47 +00:00
|
|
|
hash = "sha256-R7JTHlNP1guKRfiDjPVi1lnvfUAXuPDNDAMTGmbj3Hc=";
|
2018-02-15 08:16:22 +00:00
|
|
|
};
|
|
|
|
|
2023-11-06 22:47:13 +00:00
|
|
|
vendorHash = "sha256-XYXIj+7xe33hCYM6Z9tqGSgr/P0LVlaPNf3T0PrxU7I=";
|
2019-03-12 21:01:12 +00:00
|
|
|
|
2023-03-21 12:05:38 +00:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
# Recent versions of macOS seem to require binaries to be signed when
|
|
|
|
# run from Launch Agents/Daemons, even on x86 devices where it has a
|
|
|
|
# more lax code signing policy compared to Apple Silicon. So just sign
|
|
|
|
# the binaries on both architectures to make it possible for launchd to
|
|
|
|
# auto-start Syncthing at login.
|
|
|
|
autoSignDarwinBinariesHook
|
|
|
|
];
|
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2022-05-09 04:13:57 +00:00
|
|
|
BUILD_USER = "nix";
|
|
|
|
BUILD_HOST = "nix";
|
2018-02-15 08:16:22 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2018-12-11 17:35:44 +00:00
|
|
|
runHook preBuild
|
2023-02-16 08:49:25 +00:00
|
|
|
(
|
|
|
|
export GOOS="${pkgsBuildBuild.go.GOOS}" GOARCH="${pkgsBuildBuild.go.GOARCH}" CC=$CC_FOR_BUILD
|
|
|
|
go build build.go
|
|
|
|
go generate github.com/syncthing/syncthing/lib/api/auto github.com/syncthing/syncthing/cmd/strelaypoolsrv/auto
|
|
|
|
)
|
|
|
|
./build -goos ${go.GOOS} -goarch ${go.GOARCH} -no-upgrade -version v${version} build ${target}
|
2018-12-11 17:35:44 +00:00
|
|
|
runHook postBuild
|
2018-02-15 08:16:22 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-12-11 17:35:44 +00:00
|
|
|
runHook preInstall
|
2019-08-10 11:01:42 +00:00
|
|
|
install -Dm755 ${target} $out/bin/${target}
|
2018-02-15 08:16:22 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
inherit postInstall;
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2022-08-02 12:12:52 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) syncthing syncthing-init syncthing-relay;
|
2020-04-16 07:21:53 +00:00
|
|
|
};
|
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
meta = with lib; {
|
2020-08-12 01:20:20 +00:00
|
|
|
homepage = "https://syncthing.net/";
|
2018-02-15 08:16:22 +00:00
|
|
|
description = "Open Source Continuous File Synchronization";
|
2020-10-06 04:20:00 +00:00
|
|
|
changelog = "https://github.com/syncthing/syncthing/releases/tag/v${version}";
|
2018-02-15 08:16:22 +00:00
|
|
|
license = licenses.mpl20;
|
2021-03-29 00:10:48 +00:00
|
|
|
maintainers = with maintainers; [ joko peterhoeg andrew-d ];
|
2022-05-05 00:46:39 +00:00
|
|
|
mainProgram = target;
|
2018-02-15 08:16:22 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2022-05-09 04:13:57 +00:00
|
|
|
in
|
|
|
|
{
|
2018-02-15 08:16:22 +00:00
|
|
|
syncthing = common {
|
|
|
|
stname = "syncthing";
|
|
|
|
target = "syncthing";
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
postInstall = ''
|
|
|
|
# This installs man pages in the correct directory according to the suffix
|
|
|
|
# on the filename
|
|
|
|
for mf in man/*.[1-9]; do
|
|
|
|
mantype="$(echo "$mf" | awk -F"." '{print $NF}')"
|
|
|
|
mandir="$out/share/man/man$mantype"
|
|
|
|
install -Dm644 "$mf" "$mandir/$(basename "$mf")"
|
|
|
|
done
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
'' + lib.optionalString (stdenv.isLinux) ''
|
2019-08-10 11:01:42 +00:00
|
|
|
mkdir -p $out/lib/systemd/{system,user}
|
2017-08-14 12:28:11 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
substitute etc/linux-systemd/system/syncthing-resume.service \
|
2019-08-10 11:01:42 +00:00
|
|
|
$out/lib/systemd/system/syncthing-resume.service \
|
2018-02-15 08:16:22 +00:00
|
|
|
--replace /usr/bin/pkill ${procps}/bin/pkill
|
2016-09-26 07:40:21 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
substitute etc/linux-systemd/system/syncthing@.service \
|
2019-08-10 11:01:42 +00:00
|
|
|
$out/lib/systemd/system/syncthing@.service \
|
|
|
|
--replace /usr/bin/syncthing $out/bin/syncthing
|
2016-09-26 07:40:21 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
substitute etc/linux-systemd/user/syncthing.service \
|
2019-08-10 11:01:42 +00:00
|
|
|
$out/lib/systemd/user/syncthing.service \
|
|
|
|
--replace /usr/bin/syncthing $out/bin/syncthing
|
2018-02-15 08:16:22 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
syncthing-discovery = common {
|
|
|
|
stname = "syncthing-discovery";
|
|
|
|
target = "stdiscosrv";
|
|
|
|
};
|
2016-09-26 07:40:21 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
syncthing-relay = common {
|
|
|
|
stname = "syncthing-relay";
|
|
|
|
target = "strelaysrv";
|
2016-05-30 08:15:58 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.isLinux) ''
|
|
|
|
mkdir -p $out/lib/systemd/system
|
2017-01-13 09:51:04 +00:00
|
|
|
|
2018-02-15 08:16:22 +00:00
|
|
|
substitute cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
|
|
|
|
$out/lib/systemd/system/strelaysrv.service \
|
2019-08-10 11:01:42 +00:00
|
|
|
--replace /usr/bin/strelaysrv $out/bin/strelaysrv
|
2018-02-15 08:16:22 +00:00
|
|
|
'';
|
2016-05-30 08:15:58 +00:00
|
|
|
};
|
2020-06-03 09:20:00 +00:00
|
|
|
}
|