Package: Fix steam run configuration location.

This commit is contained in:
Dmitry Voronin 2024-12-19 09:05:40 +03:00
parent fdf80f6def
commit 1188ba617d
2 changed files with 10 additions and 17 deletions

View file

@ -137,15 +137,8 @@
steam # Gaming platform. steam # Gaming platform.
vkd3d # Directx to Vulkan. vkd3d # Directx to Vulkan.
wine64 # Run Windows software on Linux. wine64 # Run Windows software on Linux.
(steam.override {
extraLibraries =
_: with pkgs; [
(callPackage ./openssl100 { })
curlWithGnuTls
];
}).run
# (import ./steamrun args).pkg # Steam env to run native games. (import ./steamrun args).pkg # Steam env to run native games.
]; ];
creative = with pkgs; [ creative = with pkgs; [

View file

@ -1,11 +1,11 @@
{ __findFile, pkgs, ... }:
{ {
__findFile, pkg =
inputs, with pkgs;
pkgs, (steam.override {
... extraLibraries = _: [
}: (callPackage <package/openssl100> { })
{ curlWithGnuTls
pkg = pkgs.callPackage "${inputs.nixpkgs}/pkgs/by-name/st/steam/package.nix" { ];
extraLibraries = pkgs: [ (pkgs.callPackage <package/openssl100> { }) ]; }).run;
};
} }