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)" ];
buildInputs = [
autoconf libtool automake libtoxcore libsodium ncurses openal libvpx
freealut libconfig pkgconfig
autoconf libtool automake libtoxcore libsodium ncurses
libconfig pkgconfig
] ++ stdenv.lib.optionals (!stdenv.isArm) [
openal libvpx freealut
];
meta = {

View File

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