about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-04-24 09:48:44 -0700
committerJonathan Ringer <jonringer117@gmail.com>2021-04-24 09:48:44 -0700
commit69a4de62515cb3980fbb5c68120d607a3bbca5c4 (patch)
tree6aa5c4c4b918eef25adc2e5c1864413794738465 /pkgs
parentd79d927cca0ac03067e5727a3d1da60590ad8f17 (diff)
steamPackages.steam: use stable archive to avoid 404s
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/steam/steam.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/steam/steam.nix b/pkgs/games/steam/steam.nix
index 8e715b4856f32..f9883633576c5 100644
--- a/pkgs/games/steam/steam.nix
+++ b/pkgs/games/steam/steam.nix
@@ -9,7 +9,7 @@ in stdenv.mkDerivation {
   inherit version;
 
   src = fetchurl {
-    url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
+    url = "https://repo.steampowered.com/steam/archive/stable/steam_${version}.tar.gz";
     sha256 = "sha256-n/iKV3jHsA77GPMk1M0MKC1fQ42tEgG8Ppgi4/9qLf8=";
   };