steamPackages.steam: use hash instead of sha256 attr

This commit is contained in:
Aidan Gauland 2024-09-22 10:22:15 +12:00
parent 1bdf3d55ce
commit 2af6e069b3
No known key found for this signature in database
GPG Key ID: 16E68DD2D0E77C91

View File

@ -7,7 +7,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchurl {
# use archive url so the tarball doesn't 404 on a new release
url = "https://repo.steampowered.com/steam/archive/stable/steam_${finalAttrs.version}.tar.gz";
sha256 = "sha256-sO07g3j1Qejato2LWJ2FrW3AzfMCcBz46HEw7aKxojQ=";
hash = "sha256-sO07g3j1Qejato2LWJ2FrW3AzfMCcBz46HEw7aKxojQ=";
};
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];