about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSomeone Serge <sergei.kozlukov@aalto.fi>2024-04-11 19:18:36 +0000
committerSomeone Serge <sergei.kozlukov@aalto.fi>2024-04-13 09:47:35 +0000
commit7c74092ad1e31bdd1bab14f906852851723f2253 (patch)
treede08589f3d0e83e84a7bccc447c275a686a778ec /pkgs
parentae42aad8932bed0f63efe7969d7944e8a2aa4a10 (diff)
rerun: fix the broken test
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/re/rerun/package.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/by-name/re/rerun/package.nix b/pkgs/by-name/re/rerun/package.nix
index 9c96b86f64c9f..b9e547f96d9b1 100644
--- a/pkgs/by-name/re/rerun/package.nix
+++ b/pkgs/by-name/re/rerun/package.nix
@@ -1,6 +1,7 @@
 {
   lib,
   rustPlatform,
+  fetchpatch,
   fetchFromGitHub,
   pkg-config,
   stdenv,
@@ -32,6 +33,14 @@ rustPlatform.buildRustPackage rec {
   patches = [
     # Disables a doctest that depends on a nightly feature
     ./0001-re_space_view_time_series-utils-patch-out-doctests-w.patch
+
+
+    # "Fix cell size test now that the overhead has shrunk"
+    # https://github.com/rerun-io/rerun/pull/5917
+    (fetchpatch {
+      url = "https://github.com/rerun-io/rerun/commit/933fc5cc1f3ee262a78bd4647257295747671152.patch";
+      hash = "sha256-jCeGfzKt0oYqIea+7bA2V/U9VIjhVvfQzLRrYG4jaHY=";
+    })
   ];
 
   cargoHash = "sha256-qvnkOlcjADV4b+JfFAy9yNaZGaf0ZO7hh9HBg5XmPi0=";