Pass libcap as SDL input to fix the build

This commit is contained in:
Michael Raskin 2015-04-26 18:05:56 +03:00
parent 08f0e0208a
commit c9c2aa5ced

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, audiofile
{ stdenv, fetchurl, pkgconfig, audiofile, libcap
, openglSupport ? false, mesa ? null
, alsaSupport ? true, alsaLib ? null
, x11Support ? true, x11 ? null, libXrandr ? null
@ -31,7 +31,8 @@ stdenv.mkDerivation rec {
buildInputs = let
notMingw = !(stdenv ? cross) || stdenv.cross.libc != "msvcrt";
in stdenv.lib.optional notMingw audiofile;
in [ libcap ]
++ (stdenv.lib.optional notMingw audiofile);
nativeBuildInputs = [ pkgconfig ] ++
stdenv.lib.optional openglSupport [ mesa ];