Fix cross for tagaspi

This commit is contained in:
Aleix Boné 2025-10-10 11:56:18 +02:00
parent 3a44f7e731
commit abda20b7f6
No known key found for this signature in database

View File

@ -8,7 +8,6 @@
, automake
, libtool
, mpi
, rsync
, gfortran
}:
@ -49,7 +48,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" ];
}