openxcom: fix missing dependency

This commit is contained in:
Peter Hoeg 2022-09-17 11:20:55 +08:00
parent ccff7afc79
commit 2472a4484e

View file

@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, libGLU
, libGL
, zlib
@ -25,7 +26,8 @@ stdenv.mkDerivation rec {
hash = "sha256-APv49ZT94oeM4KVKGtUdoQ1t8Ly8lsocr+FqXiRXbk0=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost libyamlcpp libGLU libGL openssl zlib ];
meta = with lib; {