Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.8 KiB
Nix
63 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "roadrunner";
|
|
version = "2025.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "roadrunner";
|
|
owner = "roadrunner-server";
|
|
tag = "v${version}";
|
|
hash = "sha256-+TA0ClPrmfksMchc4WgX2nMZetDuw8Q0xtbiHm2OMa4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
# Flags as provided by the build automation of the project:
|
|
# https://github.com/roadrunner-server/roadrunner/blob/fe572d0eceae8fd05225fbd99ba50a9eb10c4393/.github/workflows/release.yml#L89
|
|
ldflags = [
|
|
"-s"
|
|
"-X=github.com/roadrunner-server/roadrunner/v2023/internal/meta.version=${version}"
|
|
"-X=github.com/roadrunner-server/roadrunner/v2023/internal/meta.buildTime=1970-01-01T00:00:00Z"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd rr \
|
|
--bash <($out/bin/rr completion bash) \
|
|
--zsh <($out/bin/rr completion zsh) \
|
|
--fish <($out/bin/rr completion fish)
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace internal/rpc/client_test.go \
|
|
--replace "127.0.0.1:55555" "127.0.0.1:55554"
|
|
|
|
substituteInPlace internal/rpc/test/config_rpc_ok.yaml \
|
|
--replace "127.0.0.1:55555" "127.0.0.1:55554"
|
|
|
|
substituteInPlace internal/rpc/test/config_rpc_conn_err.yaml \
|
|
--replace "127.0.0.1:0" "127.0.0.1:55554"
|
|
'';
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
vendorHash = "sha256-/u2so1/WXuQvLZhfRSYdG1QZasrA6xoZTE6lYXg9RWs=";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/roadrunner-server/roadrunner/blob/v${version}/CHANGELOG.md";
|
|
description = "High-performance PHP application server, process manager written in Go and powered with plugins";
|
|
homepage = "https://roadrunner.dev";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "rr";
|
|
maintainers = [ ];
|
|
};
|
|
}
|