2024-01-02 11:29:13 +00:00
|
|
|
{ lib, stdenv, requireFile, callPackage}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
callPackage ./runtime-build.nix rec {
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "20.0.506";
|
2024-01-02 11:29:13 +00:00
|
|
|
eulaDate = "2021-10-13";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = requireFile rec {
|
2024-01-25 14:12:00 +00:00
|
|
|
name = "houdini-${version}-linux_x86_64_gcc11.2.tar.gz";
|
|
|
|
sha256 = "10dcb695bf9bb6407ccfd91c67858d69864208ee97e1e9afe216abf99db549f5";
|
2024-01-02 11:29:13 +00:00
|
|
|
url = "https://www.sidefx.com/download/daily-builds/?production=true";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|