Steam icon

Steam 4.0

Video game digital distribution service

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    steam # Steam
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    steam # Steam
  ];
}

Package Definition

{
  "pname": "steam",
  "version": "4.0",
  "src": {
    "url": "https://cdn.cloudflare.steamstatic.com/client/installer/steam.dmg",
    "sha256": "no_check"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"Steam.app\" \"$out/Applications/Steam.app\""
  ],
  "meta": {
    "description": "Video game digital distribution service",
    "homepage": "https://store.steampowered.com/about/"
  }
}