1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

steam-run: make free and create version without steam (#334773)

This commit is contained in:
Atemu 2024-09-19 15:09:28 +02:00 committed by GitHub
commit fa09c7cca3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -341,6 +341,10 @@ in buildFHSEnv rec {
description = "Run commands in the same FHS environment that is used for Steam";
mainProgram = "steam-run";
name = "steam-run";
# steam-run itself is just a script that lives in nixpkgs (which is licensed under MIT).
# steam is a dependency and already unfree, so normal steam-run will not install without
# allowing unfree packages or appropriate `allowUnfreePredicate` rules.
license = lib.licenses.mit;
};
};
}

View file

@ -35678,6 +35678,8 @@ with pkgs;
steam-run = steam.run;
steam-run-free = steamPackages.steam-fhsenv-without-steam.run;
steam-tui = callPackage ../games/steam-tui { };
steamcmd = steamPackages.steamcmd;