77 lines
2.5 KiB
Nix
77 lines
2.5 KiB
Nix
|
{ stdenv, requireFile, zlib, libpng, libSM, libICE, fontconfig, xorg, mesa_glu, bc }:
|
||
|
|
||
|
let
|
||
|
ld_library_path = builtins.concatStringsSep ":" [
|
||
|
"${stdenv.cc.cc.lib}/lib64"
|
||
|
"/run/opengl-driver/lib"
|
||
|
(stdenv.lib.makeLibraryPath [
|
||
|
mesa_glu
|
||
|
xorg.libXmu
|
||
|
xorg.libXi
|
||
|
xorg.libXext
|
||
|
xorg.libX11
|
||
|
xorg.libXrender
|
||
|
fontconfig
|
||
|
libSM
|
||
|
libICE
|
||
|
zlib
|
||
|
libpng
|
||
|
])
|
||
|
];
|
||
|
license_dir = "~/.config/houdini";
|
||
|
in
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "16.0.633";
|
||
|
name = "houdini-runtime-${version}";
|
||
|
src = requireFile rec {
|
||
|
name = "houdini-16.0.633-linux_x86_64_gcc4.8.tar.gz";
|
||
|
sha256 = "1laxncwgsr4hj53bn4pn9ibv3pkrpliwxlx0558wgnhq42js3wvl";
|
||
|
message = ''
|
||
|
This nix expression requires that ${name} is already part of the store.
|
||
|
Download it from https://sidefx.com and add it to the nix store with:
|
||
|
|
||
|
nix-prefetch-url <URL>
|
||
|
|
||
|
This can't be done automatically because you need to create an account on
|
||
|
their website and agree to their license terms before you can download
|
||
|
it. That's what you get for using proprietary software.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
buildInputs = [ bc ];
|
||
|
installPhase = ''
|
||
|
patchShebangs houdini.install
|
||
|
mkdir -p $out
|
||
|
sed -i "s|/usr/lib/sesi|${license_dir}|g" houdini.install
|
||
|
./houdini.install --install-houdini \
|
||
|
--no-install-menus \
|
||
|
--no-install-bin-symlink \
|
||
|
--auto-install \
|
||
|
--no-root-check \
|
||
|
--accept-EULA \
|
||
|
$out
|
||
|
sed -i "s|/usr/lib/sesi|${license_dir}|g" $out/houdini/Licensing.opt
|
||
|
sed -i "s|/usr/lib/sesi|${license_dir}|g" $out/houdini/sbin/sesinetd_safe
|
||
|
sed -i "s|/usr/lib/sesi|${license_dir}|g" $out/houdini/sbin/sesinetd.startup
|
||
|
echo "export LD_LIBRARY_PATH=${ld_library_path}" >> $out/bin/app_init.sh
|
||
|
echo "export LD_LIBRARY_PATH=${ld_library_path}" >> $out/houdini/sbin/app_init.sh
|
||
|
'';
|
||
|
postFixup = ''
|
||
|
INTERPRETER="$(cat "$NIX_CC"/nix-support/dynamic-linker)"
|
||
|
for BIN in $(find $out/bin -type f -executable); do
|
||
|
if patchelf $BIN 2>/dev/null ; then
|
||
|
echo "Patching ELF $BIN"
|
||
|
patchelf --set-interpreter "$INTERPRETER" "$BIN"
|
||
|
fi
|
||
|
done
|
||
|
'';
|
||
|
meta = {
|
||
|
description = "3D animation application software";
|
||
|
homepage = "https://sidefx.com";
|
||
|
license = stdenv.lib.licenses.unfree;
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
maintainers = [ stdenv.lib.maintainers.canndrew ];
|
||
|
};
|
||
|
}
|
||
|
|