steam-runtime: init at 2014-04-15
This commit is contained in:
parent
724a82b737
commit
3bd78123f3
25
pkgs/games/steam/runtime.nix
Normal file
25
pkgs/games/steam/runtime.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user