openxcom: fix missing dependency
This commit is contained in:
parent
ccff7afc79
commit
2472a4484e
1 changed files with 3 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue