2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl
|
2020-12-08 23:35:49 +01:00
|
|
|
|
|
|
|
# for update script
|
|
|
|
, writeShellScript, curl, nix-update
|
|
|
|
}:
|
2015-08-06 19:06:38 +02:00
|
|
|
|
2020-05-08 08:31:00 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-08 09:32:02 +02:00
|
|
|
|
2020-12-08 23:35:49 +01:00
|
|
|
pname = "steam-runtime";
|
2021-10-06 06:44:44 +02:00
|
|
|
# from https://repo.steampowered.com/steamrt-images-scout/snapshots/latest-steam-client-general-availability/VERSION.txt
|
2021-11-27 02:15:42 +01:00
|
|
|
version = "0.20211102.0";
|
2015-08-06 19:06:38 +02:00
|
|
|
|
2020-06-13 23:41:22 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://repo.steampowered.com/steamrt-images-scout/snapshots/${version}/steam-runtime.tar.xz";
|
2021-11-27 02:15:42 +01:00
|
|
|
sha256 = "sha256-/ve4oVxKQ4uTaTiTg8Qc0Kyb4GRJKGZ5SQVLIyeJSpI=";
|
2020-06-13 23:41:22 +02:00
|
|
|
name = "scout-runtime-${version}.tar.gz";
|
|
|
|
};
|
2015-08-06 19:06:38 +02:00
|
|
|
|
2015-10-20 16:08:44 +02:00
|
|
|
buildCommand = ''
|
2015-08-06 19:06:38 +02:00
|
|
|
mkdir -p $out
|
2020-06-13 23:41:22 +02:00
|
|
|
tar -C $out --strip=1 -x -f $src
|
2015-08-06 19:06:38 +02:00
|
|
|
'';
|
|
|
|
|
2020-12-08 23:35:49 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = writeShellScript "update.sh" ''
|
|
|
|
version=$(${curl}/bin/curl https://repo.steampowered.com/steamrt-images-scout/snapshots/latest-steam-client-general-availability/VERSION.txt)
|
|
|
|
${nix-update}/bin/nix-update --version "$version" steamPackages.steam-runtime
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-08-06 19:06:38 +02:00
|
|
|
description = "The official runtime used by Steam";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ValveSoftware/steam-runtime";
|
2015-10-20 16:08:44 +02:00
|
|
|
license = licenses.unfreeRedistributable; # Includes NVIDIA CG toolkit
|
|
|
|
maintainers = with maintainers; [ hrdinka abbradar ];
|
2015-08-06 19:06:38 +02:00
|
|
|
};
|
|
|
|
}
|