mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ lib, fetchFromGitHub, buildGoModule, testers, temporal }:
|
|
|
|
buildGoModule rec {
|
|
pname = "temporal";
|
|
version = "1.25.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "temporalio";
|
|
repo = "temporal";
|
|
rev = "v${version}";
|
|
hash = "sha256-/y03XyJM9OaG8Pceh6RuB5eIU0ue3O0cPnax4ASTt4k=";
|
|
};
|
|
|
|
vendorHash = "sha256-7t/hMTCraDLLYsyoGar8j7Q84temMGY+ZxVmJBGBw0c=";
|
|
|
|
excludedPackages = [ "./build" ];
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
# There too many integration tests.
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share
|
|
cp -r ./schema $out/share/
|
|
|
|
install -Dm755 "$GOPATH/bin/server" -T $out/bin/temporal-server
|
|
install -Dm755 "$GOPATH/bin/cassandra" -T $out/bin/temporal-cassandra-tool
|
|
install -Dm755 "$GOPATH/bin/sql" -T $out/bin/temporal-sql-tool
|
|
install -Dm755 "$GOPATH/bin/tdbg" -T $out/bin/tdbg
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = temporal;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Microservice orchestration platform which enables developers to build scalable applications without sacrificing productivity or reliability";
|
|
homepage = "https://temporal.io";
|
|
changelog = "https://github.com/temporalio/temporal/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "temporal-server";
|
|
};
|
|
}
|