2022-05-15 03:44:05 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule, testers, temporal }:
|
2021-07-13 22:34:07 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "temporal";
|
2022-08-31 22:48:07 +00:00
|
|
|
version = "1.17.5";
|
2021-07-13 22:34:07 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "temporalio";
|
|
|
|
repo = "temporal";
|
|
|
|
rev = "v${version}";
|
2022-08-31 22:48:07 +00:00
|
|
|
sha256 = "sha256-u8GyaXpiVZdPDoPAqIa+TY+JQFZeSGOLrUy+e3E4kig=";
|
2021-07-13 22:34:07 +00:00
|
|
|
};
|
|
|
|
|
2022-07-31 03:12:17 +00:00
|
|
|
vendorSha256 = "sha256-MT/BmGTdyEzmXjuwlA6WhLIWlrQz3Wc4Tl5dMI1587Q=";
|
2021-07-13 22:34:07 +00:00
|
|
|
|
2022-05-15 03:44:05 +00:00
|
|
|
CGO_ENABLED = 0;
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
|
2022-05-21 03:20:33 +00:00
|
|
|
# There too many integration tests.
|
|
|
|
doCheck = false;
|
2021-07-13 22:34:07 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2022-05-15 03:44:05 +00:00
|
|
|
|
2021-07-13 22:34:07 +00:00
|
|
|
install -Dm755 "$GOPATH/bin/server" -T $out/bin/temporal-server
|
2022-02-18 20:08:48 +00:00
|
|
|
install -Dm755 "$GOPATH/bin/cassandra" -T $out/bin/temporal-cassandra-tool
|
|
|
|
install -Dm755 "$GOPATH/bin/sql" -T $out/bin/temporal-sql-tool
|
2022-05-15 03:44:05 +00:00
|
|
|
|
2021-07-13 22:34:07 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2022-05-15 03:44:05 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = temporal;
|
|
|
|
};
|
2021-07-13 22:34:07 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A microservice orchestration platform which enables developers to build scalable applications without sacrificing productivity or reliability";
|
|
|
|
homepage = "https://temporal.io";
|
2022-02-18 19:20:28 +00:00
|
|
|
changelog = "https://github.com/temporalio/temporal/releases/tag/v${version}";
|
2021-07-13 22:34:07 +00:00
|
|
|
license = licenses.mit;
|
2022-02-18 19:20:28 +00:00
|
|
|
maintainers = with maintainers; [ titanous ];
|
2022-05-15 03:44:05 +00:00
|
|
|
mainProgram = "temporal-server";
|
2021-07-13 22:34:07 +00:00
|
|
|
};
|
|
|
|
}
|