1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/games/steam/runtime.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2015-08-06 13:06:38 -04:00
{ stdenv, fetchurl }:
2015-08-23 11:12:16 -04:00
let arch = if stdenv.system == "x86_64-linux" then "amd64"
else if stdenv.system == "i686-linux" then "i386"
else abort "Unsupported platform";
in stdenv.mkDerivation rec {
2015-08-06 13:06:38 -04:00
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
2015-08-23 11:12:16 -04:00
mv ${arch}/* $out/
2015-08-06 13:06:38 -04:00
'';
2015-08-23 11:12:16 -04:00
passthru = rec {
inherit arch;
gnuArch = if arch == "amd64" then "x86_64-linux-gnu"
else if arch == "i386" then "i386-linux-gnu"
else abort "Unsupported architecture";
libs = [ "lib/${gnuArch}" "lib" "usr/lib/${gnuArch}" "usr/lib" ];
bins = [ "bin" "usr/bin" ];
};
2015-08-06 13:06:38 -04:00
meta = with stdenv.lib; {
description = "The official runtime used by Steam";
2015-08-23 11:12:16 -04:00
homepage = https://github.com/ValveSoftware/steam-runtime;
license = licenses.mit;
2015-08-06 13:06:38 -04:00
maintainers = with maintainers; [ hrdinka ];
2015-08-23 11:12:16 -04:00
hydraPlatforms = [];
2015-08-06 13:06:38 -04:00
};
}