nixpkgs/pkgs/games/steam/steam.nix

39 lines
1 KiB
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.56";
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 = "01jgp909biqf4rr56kb08jkl7g5xql6r2g4ch6lc71njgcsbn5fs";
};
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
''}
2018-09-28 07:34:37 +00:00
install -d $out/lib/udev/rules.d
install -m644 lib/udev/rules.d/*.rules $out/lib/udev/rules.d
'';
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 ];
};
}