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
382 B
Nix
Raw Normal View History

{ lib, stdenv, requireFile, callPackage}:
2017-07-12 15:36:28 +01:00
callPackage ./runtime-build.nix rec {
2023-12-10 01:04:17 +00:00
version = "20.0.506";
eulaDate = "2021-10-13";
2017-07-12 15:36:28 +01:00
src = requireFile rec {
2023-12-10 01:04:17 +00:00
name = "houdini-${version}-linux_x86_64_gcc11.2.tar.gz";
sha256 = "10dcb695bf9bb6407ccfd91c67858d69864208ee97e1e9afe216abf99db549f5";
url = "https://www.sidefx.com/download/daily-builds/?production=true";
2017-07-12 15:36:28 +01:00
};
}