houdini: 19.5.569 -> 20.0.506

This commit is contained in:
pedohorse 2023-12-10 02:04:17 +01:00
parent bb2a9ce1c7
commit 329abb1a5d
2 changed files with 4 additions and 6 deletions

View File

@ -31,6 +31,7 @@ buildFHSEnv rec {
ocl-icd # needed for opencl
numactl # needed by hfs ocl backend
ncurses5 # needed by hfs ocl backend
zstd # needed from 20.0
] ++ (with xorg; [
libICE
libSM

View File

@ -1,14 +1,11 @@
{ lib, stdenv, requireFile, callPackage}:
let
license_dir = "~/.config/houdini";
in
callPackage ./runtime-build.nix rec {
version = "19.5.569";
version = "20.0.506";
eulaDate = "2021-10-13";
src = requireFile rec {
name = "houdini-${version}-linux_x86_64_gcc9.3.tar.gz";
sha256 = "0c2d6a31c24f5e7229498af6c3a7cdf81242501d7a0792e4c33b53a898d4999e";
name = "houdini-${version}-linux_x86_64_gcc11.2.tar.gz";
sha256 = "10dcb695bf9bb6407ccfd91c67858d69864208ee97e1e9afe216abf99db549f5";
url = "https://www.sidefx.com/download/daily-builds/?production=true";
};
}