Skip to content

Commit

Permalink
Merge pull request #268670 from ShaddyDC/osl-fix
Browse files Browse the repository at this point in the history
osl: fix build, 1.12.13.0 -> 1.12.14.0
  • Loading branch information
pbsds authored Nov 27, 2023
2 parents b9bab33 + 12b56ae commit 72a5d95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/compilers/osl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
6 changes: 6 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 72a5d95

Please sign in to comment.