about summary refs log tree commit diff
path: root/pkgs/tools/misc/fd
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-07-13 21:13:10 +0200
committerYureka <yuka@yuka.dev>2023-10-20 14:26:07 +0200
commit799fff889b1e8058ea392f93400fbbb8923edc86 (patch)
tree28cfc117799f6f001a606fdc2db0b54c5fd34b78 /pkgs/tools/misc/fd
parent35925e55f2febebf04aca692000b51d4b6365dce (diff)
tree-wide: make rust jemalloc-sys use nixpkgs jemalloc build
Diffstat (limited to 'pkgs/tools/misc/fd')
-rw-r--r--pkgs/tools/misc/fd/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/fd/default.nix b/pkgs/tools/misc/fd/default.nix
index 0f78b752de00b..23e00e00363ce 100644
--- a/pkgs/tools/misc/fd/default.nix
+++ b/pkgs/tools/misc/fd/default.nix
@@ -1,4 +1,4 @@
-{ lib, rustPlatform, fetchFromGitHub, installShellFiles, testers, fd }:
+{ lib, rustPlatform, fetchFromGitHub, installShellFiles, rust-jemalloc-sys, testers, fd }:
 
 rustPlatform.buildRustPackage rec {
   pname = "fd";
@@ -15,6 +15,8 @@ rustPlatform.buildRustPackage rec {
 
   nativeBuildInputs = [ installShellFiles ];
 
+  buildInputs = [ rust-jemalloc-sys ];
+
   # skip flaky test
   checkFlags = [
     "--skip=test_owner_current_group"