nixpkgs/pkgs/games/steam/steam.nix

37 lines
945 B
Nix
Raw Normal View History

{stdenv, fetchurl, traceDeps ? false}:
2015-12-03 21:37:28 +00:00
let
traceLog = "/tmp/steam-trace-dependencies.log";
version = "1.0.0.51";
2015-12-03 21:37:28 +00:00
in stdenv.mkDerivation rec {
name = "steam-original-${version}";
src = fetchurl {
2015-12-03 21:37:28 +00:00
url = "http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
sha256 = "1ghrfznm9rckm8v87zvh7hx820r5pp7sq575wxwq0fncbyq6sxmz";
};
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
2015-12-03 21:37:28 +00:00
#!${stdenv.shell}
echo \$1 >> ${traceLog}
cat \$1 >> ${traceLog}
echo >> ${traceLog}
EOF
chmod +x $out/bin/steamdeps
''}
'';
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 ];
};
}