From a17ad0417d45c4a69d4822cf9ae6a28fcd8abb51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Thu, 30 Oct 2025 15:09:49 +0100 Subject: [PATCH] Fix cross for tagaspi --- pkgs/tagaspi/default.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pkgs/tagaspi/default.nix b/pkgs/tagaspi/default.nix index 5f1d7340..9e9ce813 100644 --- a/pkgs/tagaspi/default.nix +++ b/pkgs/tagaspi/default.nix @@ -5,23 +5,14 @@ , automake , autoconf , libtool -, mpi , autoreconfHook , gpi-2 , boost , numactl , rdma-core , gfortran -, symlinkJoin }: -let - mpiAll = symlinkJoin { - name = "mpi-all"; - paths = [ mpi.all ]; - }; -in - stdenv.mkDerivation rec { pname = "tagaspi"; enableParallelBuilding = true; @@ -35,16 +26,18 @@ stdenv.mkDerivation rec { hash = "sha256-RGG/Re2uM293HduZfGzKUWioDtwnSYYdfeG9pVrX9EM="; }; - buildInputs = [ + nativeBuildInputs = [ autoreconfHook automake autoconf libtool + gfortran + ]; + + buildInputs = [ boost numactl rdma-core - gfortran - mpiAll ]; dontDisableStatic = true;