Unverified Commit 16c4e805 authored by Matthieu Coudron's avatar Matthieu Coudron Committed by GitHub
Browse files

clipcat: fix build (#461919)

parents 21906f97 f492b0d4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -25,6 +25,8 @@ rustPlatform.buildRustPackage rec {
    # Fix compilation errors caused by stricter restrictions on unused code in Rust 1.89.
    # TODO: remove this patch after upstream fix it.
    ./dummy.patch
    # https://github.com/xrelkd/clipcat/pull/871
    ./remove_unnecessary_parenthesis.patch
  ];

  nativeBuildInputs = [
+22 −0
Original line number Diff line number Diff line
From 76e3ce46eb930dbc51c3e7aeb832a9db6194fd34 Mon Sep 17 00:00:00 2001
From: sandroid <sandroid@posteo.net>
Date: Sun, 9 Nov 2025 22:12:03 +0100
Subject: [PATCH] fix(crates/server): remove unnecessary parentheses

---
 crates/server/src/snippets/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/server/src/snippets/mod.rs b/crates/server/src/snippets/mod.rs
index 00759b1e..8a43c326 100644
--- a/crates/server/src/snippets/mod.rs
+++ b/crates/server/src/snippets/mod.rs
@@ -39,7 +39,7 @@ async fn load(config: &config::SnippetConfig) -> HashMap<ClipEntry, Option<PathB
                 clipcat_base::utils::fs::read_dir_recursively_async(&path)
                     .await
                     .into_iter()
-                    .map(|file| (async move { (tokio::fs::read(&file).await.ok(), file) })),
+                    .map(|file| async move { (tokio::fs::read(&file).await.ok(), file) }),
             )
             .await
             .into_iter()