Add include-what-you-use to ovni derivation

This commit is contained in:
Rodrigo Arias 2023-03-22 16:14:40 +01:00 committed by Rodrigo Arias Mallo
parent ddbb7dd9f4
commit 09e7de548d

View File

@ -2,12 +2,13 @@
stdenv stdenv
, cmake , cmake
, mpi , mpi
, include-what-you-use
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ovni"; name = "ovni";
buildInputs = [ cmake mpi ]; buildInputs = [ cmake mpi include-what-you-use ];
# Prevent accidental reutilization of previous builds, as we are taking the # Prevent accidental reutilization of previous builds, as we are taking the
# current directory as-is # current directory as-is