about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-27 06:07:47 +0200
committerGitHub <noreply@github.com>2024-04-27 06:07:47 +0200
commitdf6a5991c818814707282856c5c856de8f095bf0 (patch)
treea591f9bd76932f1f84cc9ae0b97db89da6b89b74 /pkgs
parent017d66386c520aca8c873e9b4918dfdbe6ab569d (diff)
parentc15ac8a50b9a8566356aac7c59a0719965cb785d (diff)
Merge pull request #306085 from b-rodrigues/fix_zoomerjoin
rPackages.zoomerjoin: fixed build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/r-modules/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index ac10b797acae1..cc6047f1b41a4 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -1128,6 +1128,11 @@ let
       postPatch = "patchShebangs configure";
     });
 
+    zoomerjoin = old.zoomerjoin.overrideAttrs (attrs: {
+      nativeBuildInputs = [ pkgs.cargo ] ++ attrs.nativeBuildInputs;
+      postPatch = "patchShebangs configure";
+    });
+
     data_table = old.data_table.overrideAttrs (attrs: {
       env = (attrs.env or { }) // {
         NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -fopenmp";