nixpkgs/pkgs/development/compilers/halide/default.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

2020-10-11 03:09:01 +00:00
{ llvmPackages
, lib
, fetchFromGitHub
, cmake
, libpng
, libjpeg
, mesa
, eigen
, openblas
, blas
, lapack
2018-08-01 12:57:51 +00:00
}:
assert blas.implementation == "openblas" && lapack.implementation == "openblas";
2020-10-11 03:09:01 +00:00
llvmPackages.stdenv.mkDerivation rec {
pname = "halide";
version = "10.0.0";
2018-08-01 12:57:51 +00:00
src = fetchFromGitHub {
owner = "halide";
repo = "Halide";
2020-10-11 03:09:01 +00:00
rev = "v${version}";
sha256 = "0il71rppjp76m7zd420siidvhs76sqiq26h60ywk812sj9mmgxj6";
2018-08-01 12:57:51 +00:00
};
# clang fails to compile intermediate code because
# of unused "--gcc-toolchain" option
postPatch = ''
sed -i "s/-Werror//" src/CMakeLists.txt
'';
2020-10-11 03:09:01 +00:00
cmakeFlags = [ "-DWARNINGS_AS_ERRORS=OFF" "-DWITH_PYTHON_BINDINGS=OFF" ];
2018-08-01 12:57:51 +00:00
# To handle the lack of 'local' RPATH; required, as they call one of
# their built binaries requiring their libs, in the build process.
preBuild = ''
2020-10-11 03:09:01 +00:00
export LD_LIBRARY_PATH="$(pwd)/src''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
2018-08-01 12:57:51 +00:00
'';
# 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 ];
2018-08-01 12:57:51 +00:00
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "C++ based language for image processing and computational photography";
homepage = "https://halide-lang.org";
license = licenses.mit;
platforms = platforms.all;
2018-08-01 12:57:51 +00:00
maintainers = [ maintainers.ck3d ];
};
}