nixpkgs/pkgs/applications/misc/houdini/runtime.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
351 B
Nix
Raw Normal View History

2024-07-11 17:34:57 +00:00
{ requireFile, callPackage }:
2017-07-12 14:36:28 +00:00
callPackage ./runtime-build.nix rec {
2024-08-21 16:03:37 +00:00
version = "20.5.332";
eulaDate = "2021-10-13";
2024-07-11 17:34:57 +00:00
src = requireFile {
2023-12-10 01:04:17 +00:00
name = "houdini-${version}-linux_x86_64_gcc11.2.tar.gz";
2024-08-21 16:03:37 +00:00
hash = "sha256-ZqbLCWfPUo0fXS9liKOXsUEpm1d60bHIkbx+K98gFtU=";
url = "https://www.sidefx.com/download/daily-builds/?production=true";
2017-07-12 14:36:28 +00:00
};
}