Package: Fix steam run configuration location.
This commit is contained in:
parent
fdf80f6def
commit
1188ba617d
|
@ -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; [
|
||||||
|
|
|
@ -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;
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue