Skip to content

Commit

Permalink
steamPackages.steam: 1.0.0.61 -> 1.0.0.68
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Dec 21, 2020
1 parent 0179b5f commit 473ec94
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/games/steam/steam.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

let
traceLog = "/tmp/steam-trace-dependencies.log";
version = "1.0.0.61";
version = "1.0.0.68";

in stdenv.mkDerivation {
pname = "steam-original";
inherit version;

src = fetchurl {
url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
sha256 = "0c5xy57gwr14vp3wy3jpqi5dl6y7n01p2dy4jlgl9bf9x7616r6n";
sha256 = "sha256-ZeiCYjxnH0Ath5bB20QHmE8R3wU4/3RiAw2NUhrrKNM=";
};

makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
Expand All @@ -26,14 +26,16 @@ in stdenv.mkDerivation {
EOF
chmod +x $out/bin/steamdeps
''}
install -d $out/lib/udev/rules.d
install -m644 lib/udev/rules.d/*.rules $out/lib/udev/rules.d
# this just installs a link, "steam.desktop -> /lib/steam/steam.desktop"
rm $out/share/applications/steam.desktop
sed -e 's,/usr/bin/steam,steam,g' steam.desktop > $out/share/applications/steam.desktop
'';

meta = with stdenv.lib; {
description = "A digital distribution platform";
homepage = "http://store.steampowered.com/";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ jagajaga ];
maintainers = with maintainers; [ jagajaga jonringer ];
};
}

0 comments on commit 473ec94

Please sign in to comment.