Merge pull request #18178 from womfoo/fix/libtcod-build
libtcod: fix build
This commit is contained in:
commit
e6ced1cb1f
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx }:
|
{ stdenv, fetchFromBitbucket, cmake, SDL, mesa, upx, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
cmakeFlags="-DLIBTCOD_SAMPLES=OFF";
|
cmakeFlags="-DLIBTCOD_SAMPLES=OFF";
|
||||||
|
|
||||||
buildInputs = [ cmake SDL mesa upx ];
|
buildInputs = [ cmake SDL mesa upx zlib ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "API for roguelike games";
|
description = "API for roguelike games";
|
||||||
|
|
Loading…
Reference in New Issue