Fix missing tampi native build inputs

This commit is contained in:
Aleix Roca Nonell 2025-07-29 15:26:51 +02:00
parent 109f4c8374
commit 9db82cee49

View File

@ -46,15 +46,16 @@ in stdenv.mkDerivation rec {
inherit (source) src version;
enableParallelBuilding = true;
separateDebugInfo = true;
buildInputs = [
nativeBuildInputs = [
autoreconfHook
automake
autoconf
libtool
gnumake
];
buildInputs = [
boost
mpi
gcc
] ++ optional (enableOvni) ovni;
configureFlags = optional (enableOvni) "--with-ovni=${ovni}";
dontDisableStatic = true;