halide: Fix build

(cherry picked from commit ba677b14dd937dc00723dc13dfa2f53c934db392)
This commit is contained in:
Christian Kögler 2021-05-30 14:17:56 +02:00 committed by github-actions[bot]
parent 0e2b7ebdde
commit cd8efe13e0
1 changed files with 11 additions and 1 deletions

View File

@ -41,7 +41,17 @@ llvmPackages.stdenv.mkDerivation rec {
# Note: only openblas and not atlas part of this Nix expression
# see pkgs/development/libraries/science/math/liblapack/3.5.0.nix
# to get a hint howto setup atlas instead of openblas
buildInputs = [ llvmPackages.llvm libpng libjpeg mesa eigen openblas ];
buildInputs = [
llvmPackages.llvm
llvmPackages.lld
llvmPackages.openmp
llvmPackages.libclang
libpng
libjpeg
mesa
eigen
openblas
];
nativeBuildInputs = [ cmake ];