aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/steam/default.nix
diff options
context:
space:
mode:
authorGeorges Dubus <georges.dubus@numergy.com>2014-08-08 17:28:57 +0200
committerGeorges Dubus <georges.dubus@numergy.com>2014-08-08 17:28:57 +0200
commit5df24fadaaa12cd5299dda129da8005a5ff131b5 (patch)
tree68079bbda5c466c6ef5c0315aab5c7e27dc07791 /pkgs/games/steam/default.nix
parentf3fd2bf9b2df030ee0ed7a0df009124830e7d82b (diff)
steam: updated to 1.0.0.48
Diffstat (limited to '')
-rw-r--r--pkgs/games/steam/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix
index 1c9cc1393432..c1273e9a20f2 100644
--- a/pkgs/games/steam/default.nix
+++ b/pkgs/games/steam/default.nix
@@ -99,21 +99,18 @@ stdenv.mkDerivation rec {
}
*/
-{stdenv, fetchurl, dpkg}:
+{stdenv, fetchurl}:
stdenv.mkDerivation {
- name = "steam-1.0.0.42";
+ name = "steam-1.0.0.48";
src = fetchurl {
- url = http://repo.steampowered.com/steam/pool/steam/s/steam/steam-launcher_1.0.0.42_all.deb;
- sha256 = "1jyvk0h1z78sdpvl4hs1kdvr6z2kwamf09vjgjx1f6j04kgqrfbw";
+ url = http://repo.steampowered.com/steam/pool/steam/s/steam/steam_1.0.0.48.tar.gz;
+ sha256 = "08y5qf75ssk4fnazyv2yz1c5zs7gjiwigaibv8yz1gbr290r0b52";
};
- buildInputs = [ dpkg ];
- unpackPhase = "true";
installPhase = ''
- mkdir -p $out
- dpkg -x $src $out
- cp -av $out/usr/* $out
- rm -Rf $out/usr
+ make DESTDIR=$out install
+ mv $out/usr/* $out #*/
+ rmdir $out/usr
'';
meta = {