steam: fix opengl inside pressure-vessel

This commit is contained in:
ash lea 2022-08-02 11:05:33 -04:00 committed by Jonathan Ringer
parent 4d6bee687b
commit 488056a418
2 changed files with 4 additions and 1 deletions

View file

@ -88,6 +88,8 @@ let
/lib32
/usr/lib/i386-linux-gnu
/usr/lib32
/run/opengl-driver/lib
/run/opengl-driver-32/lib
EOF
ldconfig &> /dev/null
'';

View file

@ -50,7 +50,8 @@ let
];
ldconfig = writeShellScriptBin "ldconfig" ''
exec ${pkgs.glibc.bin}/bin/ldconfig -f /etc/ld.so.conf -C /etc/ld.so.cache "$@"
# due to a glibc bug, 64-bit ldconfig complains about patchelf'd 32-bit libraries, so we're using 32-bit ldconfig
exec ${pkgsi686Linux.glibc.bin}/bin/ldconfig -f /etc/ld.so.conf -C /etc/ld.so.cache "$@"
'';
etcProfile = writeText "profile" ''
export PS1='${name}-chrootenv:\u@\h:\w\$ '