Fix missing tampi native build inputs

This commit is contained in:
2025-07-29 15:26:51 +02:00
parent 1f09f8cac2
commit d9a49df8ff

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;