Making tox/toxic A/V libs disabled in ARM.

This commit is contained in:
Lluís Batlle i Rossell 2014-09-23 17:58:56 +02:00
parent 04b3932117
commit c9494b8090
2 changed files with 10 additions and 5 deletions

View File

@ -15,8 +15,10 @@ in stdenv.mkDerivation rec {
installFlags = [ "PREFIX=$(out)" ]; installFlags = [ "PREFIX=$(out)" ];
buildInputs = [ buildInputs = [
autoconf libtool automake libtoxcore libsodium ncurses openal libvpx autoconf libtool automake libtoxcore libsodium ncurses
freealut libconfig pkgconfig libconfig pkgconfig
] ++ stdenv.lib.optionals (!stdenv.isArm) [
openal libvpx freealut
]; ];
meta = { meta = {

View File

@ -36,13 +36,16 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
autoconf libtool automake libsodium ncurses libopus autoconf libtool automake libsodium ncurses
check libconfig pkgconfig libconfig pkgconfig
] ++ stdenv.lib.optionals (!stdenv.isArm) [
libopus libvpx
]; ];
propagatedBuildInputs = [ libvpx ]; propagatedBuildInputs = [ libvpx ];
doCheck = true; doCheck = !stdenv.isArm;
meta = { meta = {
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto"; description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";