summary refs log tree commit diff
path: root/pkgs/games/stuntrally
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-04-11 18:18:24 +0300
committerNikolay Amiantov <ab@fmap.me>2016-04-12 03:09:44 +0300
commit1365492424828c02b8e0626eb3ee9ef4335bc6e5 (patch)
tree0d4f6d2ea75a1a1b6d1fe4f8e47b73c6b1a43485 /pkgs/games/stuntrally
parent6a5387e68cc068b35404d153913cdca4bd17ac3c (diff)
downloadnixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar.gz
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar.bz2
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar.lz
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar.xz
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.tar.zst
nixpkgs-1365492424828c02b8e0626eb3ee9ef4335bc6e5.zip
stuntrally: 2.5 -> 2.6, mark as broken
Diffstat (limited to 'pkgs/games/stuntrally')
-rw-r--r--pkgs/games/stuntrally/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/games/stuntrally/default.nix b/pkgs/games/stuntrally/default.nix
index 2c41a11ab57..436ac958f34 100644
--- a/pkgs/games/stuntrally/default.nix
+++ b/pkgs/games/stuntrally/default.nix
@@ -3,18 +3,18 @@
 
 stdenv.mkDerivation rec {
   name = "stunt-rally-${version}";
-  version = "2.5";
+  version = "2.6";
 
   src = fetchgit {
     url = git://github.com/stuntrally/stuntrally.git;
     rev = "refs/tags/${version}";
-    sha256 = "1lsh7z7sjfwpdybg6vbwqx1zxsgbfp2n60n7xl33v225p32qh1qf";
+    sha256 = "0rrfmldl6m7igni1n4rv2i0s2q5j1ik8dh05ydkaqrpcky96bdr8";
   };
 
   tracks = fetchgit {
     url = git://github.com/stuntrally/tracks.git;
     rev = "refs/tags/${version}";
-    sha256 = "1614j6q1d2f69l58kkqndndvf6svcghhw8pzc2s1plf6k87h67mg";
+    sha256 = "186qqyr1nrabfzsgy7b4sjgm38mgd875f4c7qwkm8k2bl7zjkrm2";
   };
 
   preConfigure = ''
@@ -34,5 +34,7 @@ stdenv.mkDerivation rec {
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ pSub ];
     platforms = platforms.linux;
+    # Build failure
+    broken = true;
   };
 }