2020-06-13 22:41:22 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2015-08-06 18:06:38 +01:00
|
|
|
|
2020-05-08 07:31:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-08 08:32:02 +01:00
|
|
|
|
2020-05-08 07:31:00 +01:00
|
|
|
name = "steam-runtime";
|
|
|
|
# from https://repo.steampowered.com/steamrt-images-scout/snapshots/
|
2020-07-17 06:34:31 +01:00
|
|
|
version = "0.20200604.0";
|
2015-08-06 18:06:38 +01:00
|
|
|
|
2020-06-13 22:41:22 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://repo.steampowered.com/steamrt-images-scout/snapshots/${version}/steam-runtime.tar.xz";
|
2020-07-17 06:34:31 +01:00
|
|
|
sha256 = "04ficg3lnf6ijwkj08094vgcsskfncnlhk61v2csls3wfwvkrmhv";
|
2020-06-13 22:41:22 +01:00
|
|
|
name = "scout-runtime-${version}.tar.gz";
|
|
|
|
};
|
2015-08-06 18:06:38 +01:00
|
|
|
|
2015-10-20 15:08:44 +01:00
|
|
|
buildCommand = ''
|
2015-08-06 18:06:38 +01:00
|
|
|
mkdir -p $out
|
2020-06-13 22:41:22 +01:00
|
|
|
tar -C $out --strip=1 -x -f $src
|
2015-08-06 18:06:38 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The official runtime used by Steam";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ValveSoftware/steam-runtime";
|
2015-10-20 15:08:44 +01:00
|
|
|
license = licenses.unfreeRedistributable; # Includes NVIDIA CG toolkit
|
|
|
|
maintainers = with maintainers; [ hrdinka abbradar ];
|
2015-08-06 18:06:38 +01:00
|
|
|
};
|
|
|
|
}
|