1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 15:58:36 +00:00

libtoxcore: Add libopus and libvpx to buildInputs.

Those are necessary to do audio/video calls, which I guess is the whole
point of the Tox project.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-07-28 20:24:01 +02:00
parent 2aa89519a0
commit 40548fce62
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, autoconf, libtool, automake, libsodium, ncurses
, libconfig, pkgconfig }:
{ stdenv, fetchurl, autoconf, libtool, automake, libsodium, ncurses, libopus
, libvpx, libconfig, pkgconfig }:
let
version = "e1158be5a6";
@ -25,7 +25,8 @@ stdenv.mkDerivation rec {
];
buildInputs = [
autoconf libtool automake libsodium ncurses libconfig pkgconfig
autoconf libtool automake libsodium ncurses libopus
libvpx libconfig pkgconfig
];
doCheck = true;