2021-06-27 21:47:50 +01:00
|
|
|
{ lib, stdenv, requireFile, bc }:
|
2017-07-12 15:36:28 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
license_dir = "~/.config/houdini";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-27 22:58:58 +01:00
|
|
|
version = "18.5.596";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "houdini-runtime";
|
2017-07-12 15:36:28 +01:00
|
|
|
src = requireFile rec {
|
2021-06-27 22:58:58 +01:00
|
|
|
name = "houdini-py3-${version}-linux_x86_64_gcc6.3.tar.gz";
|
|
|
|
sha256 = "1b1k7rkn7svmciijqdwvi9p00srsf81vkb55grjg6xa7fgyidjx1";
|
2020-02-26 11:00:42 +00:00
|
|
|
url = meta.homepage;
|
2017-07-12 15:36:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ bc ];
|
|
|
|
installPhase = ''
|
|
|
|
patchShebangs houdini.install
|
|
|
|
mkdir -p $out
|
|
|
|
./houdini.install --install-houdini \
|
2021-06-27 22:58:58 +01:00
|
|
|
--install-license \
|
2017-07-12 15:36:28 +01:00
|
|
|
--no-install-menus \
|
|
|
|
--no-install-bin-symlink \
|
|
|
|
--auto-install \
|
|
|
|
--no-root-check \
|
2021-06-27 22:58:58 +01:00
|
|
|
--accept-EULA 2020-05-05 \
|
2017-07-12 15:36:28 +01:00
|
|
|
$out
|
2021-06-27 22:58:58 +01:00
|
|
|
echo "licensingMode = localValidator" >> $out/houdini/Licensing.opt
|
2017-07-12 15:36:28 +01:00
|
|
|
'';
|
2021-06-27 22:58:58 +01:00
|
|
|
|
|
|
|
dontFixup = true;
|
|
|
|
|
2021-06-27 21:47:50 +01:00
|
|
|
meta = with lib; {
|
2017-07-12 15:36:28 +01:00
|
|
|
description = "3D animation application software";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.sidefx.com";
|
2021-06-27 21:47:50 +01:00
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = platforms.linux;
|
2021-01-19 07:58:43 +00:00
|
|
|
hydraPlatforms = [ ]; # requireFile src's should be excluded
|
2021-06-27 21:47:50 +01:00
|
|
|
maintainers = with maintainers; [ canndrew kwohlfahrt ];
|
2017-07-12 15:36:28 +01:00
|
|
|
};
|
|
|
|
}
|