mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{stdenv, fetchurl, runtimeShell, traceDeps ? false}:
|
|
|
|
let
|
|
traceLog = "/tmp/steam-trace-dependencies.log";
|
|
version = "1.0.0.61";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "steam-original";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
|
|
sha256 = "0c5xy57gwr14vp3wy3jpqi5dl6y7n01p2dy4jlgl9bf9x7616r6n";
|
|
};
|
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
|
|
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
|
|
''}
|
|
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/";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ jagajaga ];
|
|
};
|
|
}
|