mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-27 22:44:56 +00:00
houdini: expanded lists
one entry per line for targetPkgs, executables - for simpler diffs
This commit is contained in:
parent
edefe53eaa
commit
4c7a5f76de
@ -4,11 +4,36 @@ buildFHSEnv rec {
|
||||
name = "houdini-${unwrapped.version}";
|
||||
|
||||
targetPkgs = pkgs: with pkgs; [
|
||||
libGLU libGL alsa-lib fontconfig zlib libpng dbus nss nspr expat pciutils
|
||||
libxkbcommon libudev0-shim tbb
|
||||
libGLU
|
||||
libGL
|
||||
alsa-lib
|
||||
fontconfig
|
||||
zlib
|
||||
libpng
|
||||
dbus
|
||||
nss
|
||||
nspr
|
||||
expat
|
||||
pciutils
|
||||
libxkbcommon
|
||||
libudev0-shim
|
||||
tbb
|
||||
] ++ (with xorg; [
|
||||
libICE libSM libXmu libXi libXext libX11 libXrender libXcursor libXfixes
|
||||
libXrender libXcomposite libXdamage libXtst libxcb libXScrnSaver
|
||||
libICE
|
||||
libSM
|
||||
libXmu
|
||||
libXi
|
||||
libXext
|
||||
libX11
|
||||
libXrender
|
||||
libXcursor
|
||||
libXfixes
|
||||
libXrender
|
||||
libXcomposite
|
||||
libXdamage
|
||||
libXtst
|
||||
libxcb
|
||||
libXScrnSaver
|
||||
]);
|
||||
|
||||
passthru = {
|
||||
@ -16,7 +41,11 @@ buildFHSEnv rec {
|
||||
};
|
||||
|
||||
extraInstallCommands = let
|
||||
executables = [ "bin/houdini" "bin/hkey" "houdini/sbin/sesinetd" ];
|
||||
executables = [
|
||||
"bin/houdini"
|
||||
"bin/hkey"
|
||||
"houdini/sbin/sesinetd"
|
||||
];
|
||||
in ''
|
||||
WRAPPER=$out/bin/${name}
|
||||
EXECUTABLES="${lib.concatStringsSep " " executables}"
|
||||
|
Loading…
Reference in New Issue
Block a user