From 01aa42a4bae9ac43d0d8a91903682230ae50164f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 28 May 2016 13:56:59 +0300 Subject: [PATCH] crawl: 1.17.1 -> 1.18.0 --- pkgs/games/crawl/crawl_purify.patch | 2 +- pkgs/games/crawl/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/crawl/crawl_purify.patch b/pkgs/games/crawl/crawl_purify.patch index bae82bebfb7a..0e2d335adac2 100644 --- a/pkgs/games/crawl/crawl_purify.patch +++ b/pkgs/games/crawl/crawl_purify.patch @@ -7,7 +7,7 @@ index b7e2fbf..5ff23db 100644 ifndef CROSSHOST - SQLITE_INCLUDE_DIR := /usr/include -+ SQLITE_INCLUDE_DIR := ${sqlite.dev}/include ++ SQLITE_INCLUDE_DIR := ${sqlite}/include else # This is totally wrong, works only with some old-style setups, and # on some architectures of Debian/new FHS multiarch -- excluding, for diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index 26603e377f02..32f9afaacf27 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -3,7 +3,7 @@ , tileMode ? false }: -let version = "0.17.1"; +let version = "0.18.0"; 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 = "05rgqg9kh4bsgzhyan4l9ygj9pqr0nbya0sv8rpm4kny0h3b006a"; + sha256 = "0mgg9lzy7lp5bhp8340a6c6qyz7yiz80wb39gknls8hvv0f6i0si"; }; patches = [ ./crawl_purify.patch ];