mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
cb0dbbfa3b
steamPackages.steam-runtime: 0.20231127.68515 -> 0.20240415.84615
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl
|
|
|
|
# for update script
|
|
, writeShellScript, curl, nix-update
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "steam-runtime";
|
|
# from https://repo.steampowered.com/steamrt-images-scout/snapshots/latest-steam-client-general-availability/VERSION.txt
|
|
version = "0.20240415.84615";
|
|
|
|
src = fetchurl {
|
|
url = "https://repo.steampowered.com/steamrt-images-scout/snapshots/${finalAttrs.version}/steam-runtime.tar.xz";
|
|
hash = "sha256-C8foNnIVA+O4YwuCrIf9N6Lr/GlApPVgZsYgi+3OZUE=";
|
|
name = "scout-runtime-${finalAttrs.version}.tar.gz";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
tar -C $out --strip=1 -x -f $src
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = writeShellScript "update.sh" ''
|
|
version=$(${curl}/bin/curl https://repo.steampowered.com/steamrt-images-scout/snapshots/latest-steam-client-general-availability/VERSION.txt)
|
|
${lib.getExe nix-update} --version "$version" steamPackages.steam-runtime
|
|
'';
|
|
};
|
|
|
|
meta = {
|
|
description = "Official runtime used by Steam";
|
|
homepage = "https://github.com/ValveSoftware/steam-runtime";
|
|
license = lib.licenses.unfreeRedistributable; # Includes NVIDIA CG toolkit
|
|
maintainers = with lib.maintainers; [ hrdinka abbradar ];
|
|
};
|
|
})
|