libbluray: making it friendlier to cross-build

Stating as native some native build inputs.
This commit is contained in:
Lluís Batlle i Rossell 2012-10-27 14:47:25 +02:00
parent 16dbe75e57
commit 63e14b0183

View File

@ -19,7 +19,8 @@ stdenv.mkDerivation {
sha256 = "551b623e76c2dba44b5490fb42ccdc491b28cd42841de28237b8edbed0f0711c";
};
buildInputs = [autoconf automake libtool] ++ stdenv.lib.optionals withAACS [jdk ant libaacs];
buildNativeInputs = [autoconf automake libtool];
buildInputs = stdenv.lib.optionals withAACS [jdk ant libaacs];
NIX_LDFLAGS = stdenv.lib.optionalString withAACS "-laacs";
preConfigure = "./bootstrap";