crawl: 1.17.1 -> 1.18.0

This commit is contained in:
Nikolay Amiantov 2016-05-28 13:56:59 +03:00
parent 05d9cf5f38
commit 01aa42a4ba
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ index b7e2fbf..5ff23db 100644
ifndef CROSSHOST ifndef CROSSHOST
- SQLITE_INCLUDE_DIR := /usr/include - SQLITE_INCLUDE_DIR := /usr/include
+ SQLITE_INCLUDE_DIR := ${sqlite.dev}/include + SQLITE_INCLUDE_DIR := ${sqlite}/include
else else
# This is totally wrong, works only with some old-style setups, and # This is totally wrong, works only with some old-style setups, and
# on some architectures of Debian/new FHS multiarch -- excluding, for # on some architectures of Debian/new FHS multiarch -- excluding, for

View File

@ -3,7 +3,7 @@
, tileMode ? false , tileMode ? false
}: }:
let version = "0.17.1"; let version = "0.18.0";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "crawl-${version}" + (if tileMode then "-tiles" else ""); name = "crawl-${version}" + (if tileMode then "-tiles" else "");
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "crawl-ref"; owner = "crawl-ref";
repo = "crawl-ref"; repo = "crawl-ref";
rev = version; rev = version;
sha256 = "05rgqg9kh4bsgzhyan4l9ygj9pqr0nbya0sv8rpm4kny0h3b006a"; sha256 = "0mgg9lzy7lp5bhp8340a6c6qyz7yiz80wb39gknls8hvv0f6i0si";
}; };
patches = [ ./crawl_purify.patch ]; patches = [ ./crawl_purify.patch ];