nix/package/steamrun/default.nix

12 lines
195 B
Nix
Raw Permalink Normal View History

{ __findFile, pkgs, ... }:
2024-12-17 08:36:47 +03:00
{
pkg =
with pkgs;
(steam.override {
extraLibraries = _: [
(callPackage <package/openssl100> { })
curlWithGnuTls
];
}).run;
2024-12-17 08:36:47 +03:00
}