Merge pull request #268670 from ShaddyDC/osl-fix

osl: fix build, 1.12.13.0 -> 1.12.14.0
This commit is contained in:
Peder Bergebakken Sundt
2023-11-27 01:03:13 +01:00
committed by GitHub
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -24,13 +24,13 @@ let
in stdenv.mkDerivation rec {
pname = "openshadinglanguage";
version = "1.12.13.0";
version = "1.12.14.0";
src = fetchFromGitHub {
owner = "AcademySoftwareFoundation";
repo = "OpenShadingLanguage";
rev = "v${version}";
hash = "sha256-EVV7YHovWwbRju+uv8IK2wpcpoK1ndZ8yNRHzU8LUuE=";
hash = "sha256-x8t7uC4q29MkTCIS1rK0ICw78u5zZG+/zyhwttLOBr4=";
};
cmakeFlags = [
+6
View File
@@ -11759,6 +11759,12 @@ with pkgs;
osl = libsForQt5.callPackage ../development/compilers/osl {
boost = boost179;
libclang = llvmPackages_15.libclang;
clang =
if stdenv.cc.libcxx != null
then (overrideLibcxx llvmPackages_15.stdenv).cc
else clang_15;
llvm = llvm_15;
};
osqp = callPackage ../development/libraries/science/math/osqp { };