nixpkgs/pkgs/games/steam/steam.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

{stdenv, fetchurl, runtimeShell, traceDeps ? false}:
2015-12-03 21:37:28 +00:00
let
traceLog = "/tmp/steam-trace-dependencies.log";
version = "1.0.0.68";
2019-08-13 22:52:01 +01:00
in stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "steam-original";
inherit version;
2015-12-03 21:37:28 +00:00
src = fetchurl {
2020-11-20 03:02:01 +00:00
url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
sha256 = "sha256-ZeiCYjxnH0Ath5bB20QHmE8R3wU4/3RiAw2NUhrrKNM=";
};
2015-12-03 21:37:28 +00:00
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
2015-12-03 21:37:28 +00:00
postInstall = ''
rm $out/bin/steamdeps
${stdenv.lib.optionalString traceDeps ''
cat > $out/bin/steamdeps <<EOF
#!${runtimeShell}
echo \$1 >> ${traceLog}
cat \$1 >> ${traceLog}
echo >> ${traceLog}
EOF
chmod +x $out/bin/steamdeps
''}
# 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/";
2015-12-03 21:37:28 +00:00
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ jagajaga jonringer ];
};
}