27 lines
793 B
Nix
27 lines
793 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "steam-runtime";
|
|
# from https://repo.steampowered.com/steamrt-images-scout/snapshots/
|
|
version = "0.20200604.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://repo.steampowered.com/steamrt-images-scout/snapshots/${version}/steam-runtime.tar.xz";
|
|
sha256 = "04ficg3lnf6ijwkj08094vgcsskfncnlhk61v2csls3wfwvkrmhv";
|
|
name = "scout-runtime-${version}.tar.gz";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
tar -C $out --strip=1 -x -f $src
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The official runtime used by Steam";
|
|
homepage = "https://github.com/ValveSoftware/steam-runtime";
|
|
license = licenses.unfreeRedistributable; # Includes NVIDIA CG toolkit
|
|
maintainers = with maintainers; [ hrdinka abbradar ];
|
|
};
|
|
}
|