mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
88 lines
1.7 KiB
Nix
88 lines
1.7 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, clang
|
|
, libclang
|
|
, libxml2
|
|
, zlib
|
|
, openexr
|
|
, openimageio
|
|
, llvm
|
|
, boost
|
|
, flex
|
|
, bison
|
|
, partio
|
|
, pugixml
|
|
, util-linux
|
|
, python3
|
|
}:
|
|
|
|
let
|
|
|
|
boost_static = boost.override { enableStatic = true; };
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "openshadinglanguage";
|
|
version = "1.13.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AcademySoftwareFoundation";
|
|
repo = "OpenShadingLanguage";
|
|
rev = "v${version}";
|
|
hash = "sha256-3HSmiIvGk+C5rnHzCXnYlFVeOWYa5M0WZRLTSb8Zsh8=";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DBoost_ROOT=${boost}"
|
|
"-DUSE_BOOST_WAVE=ON"
|
|
"-DENABLE_RTTI=ON"
|
|
|
|
# Build system implies llvm-config and llvm-as are in the same directory.
|
|
# Override defaults.
|
|
"-DLLVM_DIRECTORY=${llvm}"
|
|
"-DLLVM_CONFIG=${llvm.dev}/bin/llvm-config"
|
|
"-DLLVM_BC_GENERATOR=${clang}/bin/clang++"
|
|
|
|
# Set C++11 to C++14 required for LLVM10+
|
|
"-DCMAKE_CXX_STANDARD=14"
|
|
];
|
|
|
|
preConfigure = "patchShebangs src/liboslexec/serialize-bc.bash ";
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
clang
|
|
cmake
|
|
flex
|
|
];
|
|
|
|
buildInputs = [
|
|
boost_static
|
|
libclang
|
|
llvm
|
|
openexr
|
|
openimageio
|
|
partio
|
|
pugixml
|
|
python3.pkgs.pybind11
|
|
util-linux # needed just for hexdump
|
|
zlib
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
libxml2
|
|
];
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$out"/lib/pkgconfig/*.pc \
|
|
--replace '=''${exec_prefix}//' '=/'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Advanced shading language for production GI renderers";
|
|
homepage = "https://opensource.imageworks.com/osl.html";
|
|
maintainers = with maintainers; [ hodapp ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|