Package: Fix steam run configuration location.
This commit is contained in:
parent
fdf80f6def
commit
1188ba617d
|
@ -137,15 +137,8 @@
|
|||
steam # Gaming platform.
|
||||
vkd3d # Directx to Vulkan.
|
||||
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; [
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ __findFile, pkgs, ... }:
|
||||
{
|
||||
__findFile,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
pkg = pkgs.callPackage "${inputs.nixpkgs}/pkgs/by-name/st/steam/package.nix" {
|
||||
extraLibraries = pkgs: [ (pkgs.callPackage <package/openssl100> { }) ];
|
||||
};
|
||||
pkg =
|
||||
with pkgs;
|
||||
(steam.override {
|
||||
extraLibraries = _: [
|
||||
(callPackage <package/openssl100> { })
|
||||
curlWithGnuTls
|
||||
];
|
||||
}).run;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue