summary refs log tree commit diff
path: root/pkgs/development/compilers/osl
diff options
context:
space:
mode:
authorChris Hodapp <hodapp87@gmail.com>2018-06-20 14:42:10 -0400
committerChris Hodapp <hodapp87@gmail.com>2018-06-21 16:18:13 -0400
commit3b880f55b5776b339310fddc6344b4cdc48e6871 (patch)
tree65e5da69f38c4374dfb6e2c0a0569cef52b44efb /pkgs/development/compilers/osl
parentd401db429047b9bc0340373198e8d542cb11a93f (diff)
downloadnixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar.gz
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar.bz2
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar.lz
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar.xz
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.tar.zst
nixlib-3b880f55b5776b339310fddc6344b4cdc48e6871.zip
appleseed: init at 1.9.0-beta, osl: init at 1.9.9, seexpr: init at 2.11
Diffstat (limited to 'pkgs/development/compilers/osl')
-rw-r--r--pkgs/development/compilers/osl/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/compilers/osl/default.nix b/pkgs/development/compilers/osl/default.nix
new file mode 100644
index 000000000000..65d8110646f8
--- /dev/null
+++ b/pkgs/development/compilers/osl/default.nix
@@ -0,0 +1,39 @@
+{ clangStdenv, stdenv, fetchFromGitHub, cmake, zlib, openexr,
+openimageio, llvm, boost165, flex, bison, partio, pugixml,
+utillinux, python
+}:
+
+let boost_static = boost165.override { enableStatic = true; };
+in clangStdenv.mkDerivation rec {
+  # In theory this could use GCC + Clang rather than just Clang,
+  # but https://github.com/NixOS/nixpkgs/issues/29877 stops this
+  name = "openshadinglanguage-${version}";
+  version = "1.9.9";
+
+  src = fetchFromGitHub {
+    owner = "imageworks";
+    repo = "OpenShadingLanguage";
+    rev = "Release-1.9.9";
+    sha256 = "1w6wbz013nirzsiw11c9dpdkcwlfncs5va8q583pdw0q2pfkj5dn";
+  };
+
+  cmakeFlags = [ "-DUSE_BOOST_WAVE=ON" "-DENABLERTTI=ON" ];
+  enableParallelBuilding = true;
+
+  preConfigure = '' patchShebangs src/liboslexec/serialize-bc.bash '';
+  
+  buildInputs = [
+     cmake zlib openexr openimageio llvm
+     boost_static flex bison partio pugixml
+     utillinux # needed just for hexdump
+     python # CMake doesn't check this?
+  ];
+  # TODO: How important is partio? CMake doesn't seem to find it
+  meta = with stdenv.lib; {
+    description = "Advanced shading language for production GI renderers";
+    homepage = http://opensource.imageworks.com/?p=osl;
+    maintainers = with maintainers; [ hodapp ];
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+  };
+}