| 14 Mar 2024 |
pedrohlc ⚡️ | * SuperSamus: have you tested if adding KCFLAGS through env is enough to enable AMD_PRIVATE_COLOR? (makeFlags seens to be a better choice than env) | 18:22:25 |
pedrohlc ⚡️ | * SuperSamus: have you tested if adding KCFLAGS through env is enough to enable AMD_PRIVATE_COLOR? (makeFlags seems to be a better choice than env) | 18:22:32 |
| @infinidoge:matrix.org joined the room. | 18:40:44 |
| @mjolnir:nixos.orgchanged room power levels. | 18:45:10 |
@genericnerdyusername:matrix.org | trying to add a .so file a game is complaining about to the steam env, steam.override {extraLibraries = [thing];} and steam.override {extraPkgs = [thing];}both dont work | 20:12:25 |
@genericnerdyusername:matrix.org | they complain about the .so they add not being in the steam-run-fhs derivation | 20:12:50 |
K900 | What is "they"? | 20:13:55 |
@atemu12:matrix.org | GenericNerdyUsername: Post the exact error you see | 22:06:16 |
K900 | Also, generally, the better solution for this is to enable the "Steam Linux Runtime" compatibility tool for the game | 20:14:24 |
@genericnerdyusername:matrix.org | /nix/store/dnf5irv7mwbsbpi385jhhp9w3vw5b99b-steam-fhs /build
/nix/store/dnf5irv7mwbsbpi385jhhp9w3vw5b99b-steam-fhs/usr /nix/store/dnf5irv7mwbsbpi385jhhp9w3vw5b99b-steam-fhs /build
cp: cannot stat '/nix/store/n5vasjg7c9x3c6rsy9h1l2485ry92b12-steaam-usr-target/lib/libcrypto.so.1.0.0: No such file or directory
| 22:17:31 |
K900 | That will run the game in Steam's own container, with Valve validated libraries | 20:14:33 |
@genericnerdyusername:matrix.org | libcrypto.so.1.0.0 is the library i want to add | 22:17:42 |
@nuko:shimeji.cafe | does it happen to be a source1 title | 22:06:52 |
@genericnerdyusername:matrix.org | Atemu: | 22:28:38 |
@nuko:shimeji.cafe | pkgsi686Linux.gperftools and a chinese font is required for source 1 games | 22:07:21 |
@genericnerdyusername:matrix.org | * Atemu | 22:28:40 |
@nuko:shimeji.cafe | the latter only needed if u are using a locale that isnt US and a select few others | 22:07:35 |
@atemu12:matrix.org | What is this an error output of? nix-build? | 22:29:37 |
@nuko:shimeji.cafe | `extraLibrarys = pkgs: [
pkgs.whatever; | 22:15:21 |
@genericnerdyusername:matrix.org | yeah, building the system that contains the steam package | 22:30:16 |
@nuko:shimeji.cafe | * extraLibrarys = pkgs: \[
pkgs.whatever;
];
btw
| 22:15:31 |
@atemu12:matrix.org | Please show your override | 22:30:52 |
@nuko:shimeji.cafe | * extraLibrarys = pkgs: [
pkgs.whatever;
];
btw
| 22:15:39 |
@genericnerdyusername:matrix.org | pkgs.steam.override {
extraPkgs = pkgs: let
libcrypto = pkgs.runCommand "libcrypto.so.1.0.0" {} ''
mkdir -p $out/lib
ln -s ${pkgs.openssl}/lib/libcrypto.so $out/lib/libcrypto.so.1.0.0
'';
in with pkgs; [ libexif libcrypto ];
}
| 22:32:53 |
@genericnerdyusername:matrix.org | Atemu: | 22:33:32 |
@atemu12:matrix.org | Hm, I don't see an obvious issue | 22:35:02 |
@genericnerdyusername:matrix.org | how does the steam-usr-target drv get build? | 22:35:28 |
@genericnerdyusername:matrix.org | * how does the steam-usr-target drv get built? | 22:35:30 |
@atemu12:matrix.org | Ah, hold on; which output of openssl is this? Try getLib. | 22:35:50 |
@atemu12:matrix.org | In reply to @genericnerdyusername:matrix.org how does the steam-usr-target drv get built? buildFHSEnvBubblewrap | 22:36:06 |