forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restate: init at 1.1.6 (NixOS#367466)
- Loading branch information
Showing
2 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15661,6 +15661,12 @@ | |
githubId = 9636071; | ||
name = "Myrl Hex"; | ||
}; | ||
myypo = { | ||
email = "[email protected]"; | ||
github = "myypo"; | ||
githubId = 110892040; | ||
name = "Mykyta Polchanov"; | ||
}; | ||
mzacho = { | ||
email = "[email protected]"; | ||
github = "mzacho"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
testers, | ||
versionCheckHook, | ||
nix-update-script, | ||
rustPlatform, | ||
fetchFromGitHub, | ||
protobuf, | ||
restate, | ||
pkg-config, | ||
openssl, | ||
perl, | ||
cmake, | ||
cacert, | ||
rdkafka, | ||
}: | ||
rustPlatform.buildRustPackage rec { | ||
pname = "restate"; | ||
version = "1.1.6"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "restatedev"; | ||
repo = "restate"; | ||
tag = "v${version}"; | ||
hash = "sha256-uDNPIL9Ox5rwWVzqWe74elHPGy6lSvWR1S7HsY6ATjc="; | ||
}; | ||
|
||
useFetchCargoVendor = true; | ||
cargoHash = "sha256-z7VAKU4bi6pX2z4jCKWDfQt8FFLN7ugnW2LOy6IHz/w="; | ||
|
||
env = { | ||
PROTOC = lib.getExe protobuf; | ||
PROTOC_INCLUDE = "${protobuf}/include"; | ||
|
||
VERGEN_GIT_COMMIT_DATE = "2024-12-23"; | ||
VERGEN_GIT_SHA = "v${version}"; | ||
|
||
# rustflags as defined in the upstream's .cargo/config.toml | ||
RUSTFLAGS = | ||
let | ||
target = stdenv.hostPlatform.config; | ||
targetFlags = rec { | ||
build = [ | ||
"-C force-unwind-tables" | ||
"-C debug-assertions" | ||
"--cfg uuid_unstable" | ||
"--cfg tokio_unstable" | ||
]; | ||
|
||
"aarch64-unknown-linux-gnu" = build ++ [ | ||
# Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) | ||
"-C force-frame-pointers=yes" | ||
]; | ||
|
||
"x86_64-unknown-linux-musl" = build ++ [ | ||
"-C link-self-contained=yes" | ||
]; | ||
|
||
"aarch64-unknown-linux-musl" = build ++ [ | ||
# Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) | ||
"-C force-frame-pointers=yes" | ||
"-C link-self-contained=yes" | ||
]; | ||
}; | ||
in | ||
lib.concatStringsSep " " (lib.attrsets.attrByPath [ target ] targetFlags.build targetFlags); | ||
|
||
# Have to be set to dynamically link librdkafka | ||
CARGO_FEATURE_DYNAMIC_LINKING = 1; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
pkg-config | ||
openssl | ||
perl | ||
rustPlatform.bindgenHook | ||
cmake | ||
]; | ||
buildInputs = [ rdkafka ]; | ||
nativeCheckInputs = [ | ||
cacert | ||
]; | ||
|
||
useNextest = true; | ||
# Feature resolution seems to be failing due to this https://github.com/rust-lang/cargo/issues/7754 | ||
auditable = false; | ||
|
||
__darwinAllowLocalNetworking = true; | ||
|
||
nativeInstallCheckInputs = [ | ||
versionCheckHook | ||
]; | ||
versionCheckProgramArg = [ "--version" ]; | ||
doInstallCheck = true; | ||
|
||
passthru = { | ||
tests.restateCliVersion = testers.testVersion { | ||
package = restate; | ||
command = "restate --version"; | ||
}; | ||
tests.restateServerVersion = testers.testVersion { | ||
package = restate; | ||
command = "restate-server --version"; | ||
}; | ||
tests.restateCtlVersion = testers.testVersion { | ||
package = restate; | ||
command = "restatectl --version"; | ||
}; | ||
updateScript = nix-update-script { }; | ||
}; | ||
|
||
meta = { | ||
description = "Restate is a platform for developing distributed fault-tolerant applications."; | ||
homepage = "https://restate.dev"; | ||
changelog = "https://github.com/restatedev/restate/releases/tag/v${version}"; | ||
mainProgram = "restate"; | ||
license = lib.licenses.bsl11; | ||
maintainers = with lib.maintainers; [ myypo ]; | ||
}; | ||
} |