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:
parent
2aa89519a0
commit
40548fce62
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue