Merge pull request #18178 from womfoo/fix/libtcod-build

libtcod: fix build
This commit is contained in:
Domen Kožar
2016-09-01 10:56:16 +02:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx }:
{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx, zlib }:
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
cmakeFlags="-DLIBTCOD_SAMPLES=OFF";
buildInputs = [ cmake SDL mesa upx ];
buildInputs = [ cmake SDL mesa upx zlib ];
meta = {
description = "API for roguelike games";