Merge pull request #31072 from Mankarse/utox-0.16.1

utox: 0.13.1 -> 0.16.1
This commit is contained in:
Jörg Thalheim 2017-11-02 10:25:22 +00:00 committed by GitHub
commit c2bd98cc30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,26 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l { stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }: , libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium, libopus, check }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "utox-${version}"; name = "utox-${version}";
# >= 0.14 should have unit tests and dbus support
version = "0.13.1"; version = "0.16.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "uTox"; owner = "uTox";
repo = "uTox"; repo = "uTox";
rev = "v${version}"; rev = "v${version}";
sha256 = "07aa92isknxf7531jr9kgk89wl5rvv34jrvir043fs9xvim5zq99"; sha256 = "0ak10925v67yaga2pw9yzp0xkb5j1181srfjdyqpd29v8mi9j828";
}; };
buildInputs = [ buildInputs = [
libtoxcore dbus libvpx libX11 openal freetype libtoxcore dbus libvpx libX11 openal freetype
libv4l libXrender fontconfig libXext libXft filter-audio libv4l libXrender fontconfig libXext libXft filter-audio
libsodium libsodium libopus
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
cmake git pkgconfig cmake git pkgconfig check
]; ];
cmakeFlags = [ cmakeFlags = [
@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
doCheck = false; doCheck = false;
checkTarget = "test";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Lightweight Tox client"; description = "Lightweight Tox client";
homepage = https://github.com/uTox/uTox; homepage = https://github.com/uTox/uTox;