diff options
author | Nikolay Amiantov <ab@fmap.me> | 2016-01-13 20:00:50 +0300 |
---|---|---|
committer | Nikolay Amiantov <ab@fmap.me> | 2016-01-13 21:21:43 +0300 |
commit | 1774cee91afaecca842763608faa55b7ab705176 (patch) | |
tree | 0026d1328a626f146bbe10d15335b34b2058166b /pkgs/games/crawl | |
parent | ad735e76e72d5b5cdbe51e3342d44173e8409aff (diff) |
crawl: 0.17.0 -> 0.17.1
Diffstat (limited to 'pkgs/games/crawl')
-rw-r--r-- | pkgs/games/crawl/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index e09e5ed730b35..e6a1eb2c1a627 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -3,7 +3,7 @@ , tileMode ? true }: -let version = "0.17.0"; +let version = "0.17.1"; in stdenv.mkDerivation rec { name = "crawl-${version}" + (if tileMode then "-tiles" else ""); @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "crawl-ref"; repo = "crawl-ref"; rev = version; - sha256 = "0igvgi3dgf73da4gznc2dcbiix79hn08qk9yalrc92d2c1xxdawh"; + sha256 = "05rgqg9kh4bsgzhyan4l9ygj9pqr0nbya0sv8rpm4kny0h3b006a"; }; patches = [ ./crawl_purify.patch ]; |