From 367700fc928caed8933a4292819be995cccc9382 Mon Sep 17 00:00:00 2001 From: myypo Date: Wed, 24 Sep 2025 00:00:42 +0300 Subject: [PATCH] restate: 1.4.4 -> 1.5.1 --- pkgs/by-name/re/restate/package.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/re/restate/package.nix b/pkgs/by-name/re/restate/package.nix index 6ac10e20bda2..1f147e49da4d 100644 --- a/pkgs/by-name/re/restate/package.nix +++ b/pkgs/by-name/re/restate/package.nix @@ -25,16 +25,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "restate"; - version = "1.4.4"; + version = "1.5.1"; src = fetchFromGitHub { owner = "restatedev"; repo = "restate"; tag = "v${finalAttrs.version}"; - hash = "sha256-OtDVYGYoUpocy3c9ZDKbE5ZqGRLewJMvABj2QQxJQ80="; + hash = "sha256-NMT1/Oy0EmAtGqHMK3FL/MZczKz//hXkpKWhQ4S3tLw="; }; - cargoHash = "sha256-OWSFnVqyI2qV0IEXKOAp2QMs2qmjzS0UINVo+nu296g="; + cargoHash = "sha256-M7p20eeaxijlGjYBAAwmK4y/58eo7NysoK+Gvs86SNo="; env = { PROTOC = lib.getExe protobuf; @@ -51,22 +51,24 @@ rustPlatform.buildRustPackage (finalAttrs: { "-C force-unwind-tables" "--cfg uuid_unstable" "--cfg tokio_unstable" - "--cfg tokio_taskdump" ]; "aarch64-unknown-linux-gnu" = self.build ++ [ # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) "-C force-frame-pointers=yes" + "--cfg tokio_taskdump" ]; "x86_64-unknown-linux-musl" = self.build ++ [ "-C link-self-contained=yes" + "--cfg tokio_taskdump" ]; "aarch64-unknown-linux-musl" = self.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" + "--cfg tokio_taskdump" ]; }); in