From 89442e6af8ff45b2eb939bcdbd3ca54a74b8485e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Fri, 10 Oct 2025 11:56:18 +0200 Subject: [PATCH] Fix cross for tagaspi --- pkgs/gpi-2/default.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/gpi-2/default.nix b/pkgs/gpi-2/default.nix index a341f369..b2f47d68 100644 --- a/pkgs/gpi-2/default.nix +++ b/pkgs/gpi-2/default.nix @@ -9,7 +9,6 @@ , automake , libtool , mpi -, rsync , gfortran }: @@ -50,7 +49,18 @@ stdenv.mkDerivation rec { "CXXFLAGS=-fPIC" ]; - buildInputs = [ slurm mpiAll rdma-core-all autoconf automake libtool rsync gfortran ]; + nativeBuildInputs = [ + autoconf + automake + gfortran + libtool + ]; + + buildInputs = [ + slurm + mpiAll + rdma-core-all + ]; hardeningDisable = [ "all" ];