3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/houdini/default.nix

19 lines
568 B
Nix
Raw Normal View History

{ callPackage, buildFHSUserEnv, undaemonize, unwrapped ? callPackage ./runtime.nix {} }:
2017-07-12 15:36:28 +01:00
2021-06-27 21:47:50 +01:00
buildFHSUserEnv {
name = "houdini-${unwrapped.version}";
targetPkgs = pkgs: with pkgs; [
libGLU libGL alsa-lib fontconfig zlib libpng dbus nss nspr expat pciutils libxkbcommon
] ++ (with xorg; [
libICE libSM libXmu libXi libXext libX11 libXrender libXcursor libXfixes
libXrender libXcomposite libXdamage libXtst libxcb libXScrnSaver
]);
2017-07-12 15:36:28 +01:00
passthru = {
2021-06-27 21:47:50 +01:00
inherit unwrapped;
};
2021-06-27 21:47:50 +01:00
runScript = "${undaemonize}/bin/undaemonize ${unwrapped}/bin/houdini";
2017-07-12 15:36:28 +01:00
}