1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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
commit e6ced1cb1f

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";