about summary refs log tree commit diff
path: root/pkgs/games/crawl/default.nix
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-09-04 17:27:21 +0300
committerNikolay Amiantov <ab@fmap.me>2016-09-04 17:27:39 +0300
commit5d7adc7b093a00b3dc0ef97fa657160815161b9f (patch)
tree6946c3f3cc6862ad6f957474293779816c301956 /pkgs/games/crawl/default.nix
parentee1b7f98799134f12981af3aacc3abbe2429d5bd (diff)
crawlTiles: fix build
Diffstat (limited to 'pkgs/games/crawl/default.nix')
-rw-r--r--pkgs/games/crawl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix
index 186768617f77e..2a1e9232c230c 100644
--- a/pkgs/games/crawl/default.nix
+++ b/pkgs/games/crawl/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses
-, dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype
+, dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype, pngcrush
 , tileMode ? false
 }:
 
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   patches = [ ./crawl_purify.patch ];
 
-  nativeBuildInputs = [ pkgconfig which perl ];
+  nativeBuildInputs = [ pkgconfig which perl pngcrush ];
 
   # Still unstable with luajit
   buildInputs = [ lua5_1 zlib sqlite ncurses ]