mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
steam: fix invalid symlinking for i686
This commit is contained in:
parent
8b218b7143
commit
724a82b737
1 changed files with 4 additions and 4 deletions
|
@ -107,12 +107,12 @@ buildFHSUserEnv {
|
|||
pkgs.gst_plugins_base
|
||||
];
|
||||
|
||||
extraBuildCommandsMulti = ''
|
||||
cd usr/lib
|
||||
ln -sf ../lib64/steam steam
|
||||
extraBuildCommands = ''
|
||||
[ -d lib64 ] && mv lib64/steam lib
|
||||
|
||||
# FIXME: maybe we should replace this with proper libcurl-gnutls
|
||||
ln -s libcurl.so.4 libcurl-gnutls.so.4
|
||||
( cd lib; ln -s libcurl.so.4 libcurl-gnutls.so.4 )
|
||||
[ -d lib64 ] && ( cd lib64; ln -s libcurl.so.4 libcurl-gnutls.so.4 )
|
||||
'';
|
||||
|
||||
profile = if withRuntime then ''
|
||||
|
|
Loading…
Reference in a new issue