lol

restate: 1.4.4 -> 1.5.1 (#447772)

authored by

Gaétan Lepage and committed by
GitHub
8c22c326 f5c71d7a

+6 -4
+6 -4
pkgs/by-name/re/restate/package.nix
··· 25 }: 26 rustPlatform.buildRustPackage (finalAttrs: { 27 pname = "restate"; 28 - version = "1.4.4"; 29 30 src = fetchFromGitHub { 31 owner = "restatedev"; 32 repo = "restate"; 33 tag = "v${finalAttrs.version}"; 34 - hash = "sha256-OtDVYGYoUpocy3c9ZDKbE5ZqGRLewJMvABj2QQxJQ80="; 35 }; 36 37 - cargoHash = "sha256-OWSFnVqyI2qV0IEXKOAp2QMs2qmjzS0UINVo+nu296g="; 38 39 env = { 40 PROTOC = lib.getExe protobuf; ··· 51 "-C force-unwind-tables" 52 "--cfg uuid_unstable" 53 "--cfg tokio_unstable" 54 - "--cfg tokio_taskdump" 55 ]; 56 57 "aarch64-unknown-linux-gnu" = self.build ++ [ 58 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 59 "-C force-frame-pointers=yes" 60 ]; 61 62 "x86_64-unknown-linux-musl" = self.build ++ [ 63 "-C link-self-contained=yes" 64 ]; 65 66 "aarch64-unknown-linux-musl" = self.build ++ [ 67 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 68 "-C force-frame-pointers=yes" 69 "-C link-self-contained=yes" 70 ]; 71 }); 72 in
··· 25 }: 26 rustPlatform.buildRustPackage (finalAttrs: { 27 pname = "restate"; 28 + version = "1.5.1"; 29 30 src = fetchFromGitHub { 31 owner = "restatedev"; 32 repo = "restate"; 33 tag = "v${finalAttrs.version}"; 34 + hash = "sha256-NMT1/Oy0EmAtGqHMK3FL/MZczKz//hXkpKWhQ4S3tLw="; 35 }; 36 37 + cargoHash = "sha256-M7p20eeaxijlGjYBAAwmK4y/58eo7NysoK+Gvs86SNo="; 38 39 env = { 40 PROTOC = lib.getExe protobuf; ··· 51 "-C force-unwind-tables" 52 "--cfg uuid_unstable" 53 "--cfg tokio_unstable" 54 ]; 55 56 "aarch64-unknown-linux-gnu" = self.build ++ [ 57 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 58 "-C force-frame-pointers=yes" 59 + "--cfg tokio_taskdump" 60 ]; 61 62 "x86_64-unknown-linux-musl" = self.build ++ [ 63 "-C link-self-contained=yes" 64 + "--cfg tokio_taskdump" 65 ]; 66 67 "aarch64-unknown-linux-musl" = self.build ++ [ 68 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 69 "-C force-frame-pointers=yes" 70 "-C link-self-contained=yes" 71 + "--cfg tokio_taskdump" 72 ]; 73 }); 74 in