From 09e7de548dd3e2583555a0c1fbffe83421a94ee4 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Wed, 22 Mar 2023 16:14:40 +0100 Subject: [PATCH] Add include-what-you-use to ovni derivation --- nix/ovni.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/ovni.nix b/nix/ovni.nix index 5f024af..fd010bb 100644 --- a/nix/ovni.nix +++ b/nix/ovni.nix @@ -2,12 +2,13 @@ stdenv , cmake , mpi +, include-what-you-use }: stdenv.mkDerivation rec { name = "ovni"; - buildInputs = [ cmake mpi ]; + buildInputs = [ cmake mpi include-what-you-use ]; # Prevent accidental reutilization of previous builds, as we are taking the # current directory as-is