From aa3f8163887a55683d4089acd3f4f643e083691b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Thu, 24 Oct 2024 16:24:16 +0200 Subject: [PATCH] ovni: fix cross compilation Reviewed-by: Rodrigo Arias Mallo --- pkgs/ovni/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/ovni/default.nix b/pkgs/ovni/default.nix index 469d989..92e4e6b 100644 --- a/pkgs/ovni/default.nix +++ b/pkgs/ovni/default.nix @@ -43,7 +43,7 @@ in postPatch = '' patchShebangs --build test/ ''; - buildInputs = [ cmake mpi ]; + nativeBuildInputs = [ cmake mpi ]; cmakeBuildType = if (enableDebug) then "Debug" else "Release"; cmakeFlags = [ "-DOVNI_GIT_COMMIT=${src.shortRev}" ]; preCheck = ''