Unverified Commit 5d56bacb authored by Marcin Serwin's avatar Marcin Serwin
Browse files

allegro4: add pkg-config to nativeBuildInputs



pkg-config is used to detect the presence of alsa-lib, without it the
library is not used and thus audio does not work.

Signed-off-by: default avatarMarcin Serwin <marcin@serwin.dev>
parent 8764efe0
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
  libXcursor,
  alsa-lib,
  cmake,
  pkg-config,
  zlib,
  libpng,
  libvorbis,
@@ -36,7 +37,10 @@ stdenv.mkDerivation rec {
    ./encoding.patch
  ];

  nativeBuildInputs = [ cmake ];
  nativeBuildInputs = [
    cmake
    pkg-config
  ];
  buildInputs = [
    texinfo6_5
    libXext