crawl: 0.23.2 -> 0.24.0

This commit is contained in:
Chris Rendle-Short 2019-10-28 21:20:42 +11:00
parent 443f1a43ef
commit c972e1b0d5

View File

@ -8,22 +8,17 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "crawl-${version}${lib.optionalString tileMode "-tiles"}"; name = "crawl-${version}${lib.optionalString tileMode "-tiles"}";
version = "0.23.2"; version = "0.24.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "crawl"; owner = "crawl";
repo = "crawl"; repo = "crawl";
rev = version; rev = version;
sha256 = "1d6mip4rvp81839yf2xm63hf34aza5wg4g5z5hi5275j94szaacs"; sha256 = "1cdjd33z04gj70manavihc3lj9ckpmd75n09vvyw01z41s33fzs0";
}; };
patches = [ # Patch hard-coded paths and remove force library builds
./crawl_purify.patch # Patch hard-coded paths and remove force library builds patches = [ ./crawl_purify.patch ];
(fetchpatch { # Use a nice high-res app icon
url = "https://github.com/crawl/crawl/commit/2aa1166087e44e6585b26cedf1fe81b3f3ba547f.patch";
sha256 = "1jqrdv4wy18shg1fdabdb421232hg5micphkixcyzxd1lrmvadg0";
})
];
nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ]; nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ];