nix/package/steamrun/default.nix

12 lines
209 B
Nix
Raw Normal View History

2024-12-17 08:36:47 +03:00
{
__findFile,
inputs,
pkgs,
...
}:
{
pkg = pkgs.callPackage "${inputs.nixpkgs}/pkgs/by-name/st/steam/package.nix" {
extraLibraries = pkgs: [ (pkgs.callPackage <package/openssl100> { }) ];
};
2024-12-17 08:36:47 +03:00
}