From 23b25f475c4df92b7c2f5fe083f6ab1a209a6993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Wed, 23 Jul 2025 11:36:20 +0200 Subject: [PATCH] Fix strictDeps ovni --- pkgs/ovni/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/ovni/default.nix b/pkgs/ovni/default.nix index 9521fa6..a2976f2 100644 --- a/pkgs/ovni/default.nix +++ b/pkgs/ovni/default.nix @@ -13,8 +13,6 @@ , useMpi ? (stdenv.buildPlatform.canExecute stdenv.hostPlatform) }: -with lib; - let release = rec { version = "1.12.0"; @@ -45,8 +43,7 @@ in postPatch = '' patchShebangs --build test/ ''; - nativeBuildInputs = [ cmake ]; - buildInputs = lib.optionals (useMpi) [ mpi ]; + nativeBuildInputs = [ cmake ] ++ lib.optionals (useMpi) [ mpi ]; cmakeBuildType = if (enableDebug) then "Debug" else "Release"; cmakeFlags = [ "-DOVNI_GIT_COMMIT=${src.shortRev}"