mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, runtimeShell, traceDeps ? false, bash }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "steam-original";
|
|
version = "1.0.0.81";
|
|
|
|
src = fetchurl {
|
|
# use archive url so the tarball doesn't 404 on a new release
|
|
url = "https://repo.steampowered.com/steam/archive/stable/steam_${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-Gia5182s4J4E3Ia1EeC5kjJX9mSltsr+b+1eRtEXtPk=";
|
|
};
|
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
|
|
postInstall =
|
|
let
|
|
traceLog = "/tmp/steam-trace-dependencies.log";
|
|
in ''
|
|
rm $out/bin/steamdeps
|
|
${lib.optionalString traceDeps ''
|
|
cat > $out/bin/steamdeps <<EOF
|
|
#!${runtimeShell}
|
|
echo \$1 >> ${traceLog}
|
|
cat \$1 >> ${traceLog}
|
|
echo >> ${traceLog}
|
|
EOF
|
|
chmod +x $out/bin/steamdeps
|
|
''}
|
|
|
|
# install udev rules
|
|
mkdir -p $out/etc/udev/rules.d/
|
|
cp ./subprojects/steam-devices/*.rules $out/etc/udev/rules.d/
|
|
substituteInPlace $out/etc/udev/rules.d/60-steam-input.rules \
|
|
--replace "/bin/sh" "${bash}/bin/bash"
|
|
|
|
# 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
|
|
'';
|
|
|
|
passthru.updateScript = ./update-bootstrap.py;
|
|
|
|
meta = with lib; {
|
|
description = "Digital distribution platform";
|
|
longDescription = ''
|
|
Steam is a video game digital distribution service and storefront from Valve.
|
|
|
|
To install on NixOS, please use the option `programs.steam.enable = true`.
|
|
'';
|
|
homepage = "https://store.steampowered.com/";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ jagajaga ];
|
|
mainProgram = "steam";
|
|
};
|
|
})
|