Commit 2472a448 authored by Peter Hoeg's avatar Peter Hoeg
Browse files

openxcom: fix missing dependency

parent ccff7afc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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; {