steam-runtime: init at 2014-04-15

This commit is contained in:
Christoph Hrdinka 2015-08-06 19:06:38 +02:00 committed by Nikolay Amiantov
parent 724a82b737
commit 3bd78123f3
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "steam-runtime-${version}";
version = "2014-04-15";
phases = [ "unpackPhase" "installPhase" ];
src = fetchurl {
url = "http://media.steampowered.com/client/runtime/steam-runtime-release_${version}.tar.xz";
sha256 = "0i6xp81rjbfn4664h4mmvw0xjwlwvdp6k7cc53jfjadcblw5cf99";
};
installPhase = ''
mkdir -p $out
mv * $out/
'';
meta = with stdenv.lib; {
description = "The official runtime used by Steam";
homepage = http://store.steampowered.com/;
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ hrdinka ];
};
}

View File

@ -13788,6 +13788,8 @@ let
withRuntime = config.steam.withRuntime or true;
};
steam-runtime = callPackage ../games/steam/runtime.nix { };
stuntrally = callPackage ../games/stuntrally { };
superTux = callPackage ../games/super-tux { };