2017-02-14 07:00:22 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
|
2016-01-07 10:13:23 +00:00
|
|
|
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }:
|
2014-07-31 10:56:16 +00:00
|
|
|
|
2016-02-17 14:43:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "utox-${version}";
|
2017-02-25 07:50:52 +00:00
|
|
|
# >= 0.14 should have unit tests and dbus support
|
|
|
|
version = "0.13.1";
|
2014-07-31 10:56:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-14 07:00:22 +00:00
|
|
|
owner = "uTox";
|
|
|
|
repo = "uTox";
|
|
|
|
rev = "v${version}";
|
2017-02-25 07:50:52 +00:00
|
|
|
sha256 = "07aa92isknxf7531jr9kgk89wl5rvv34jrvir043fs9xvim5zq99";
|
2014-07-31 10:56:16 +00:00
|
|
|
};
|
|
|
|
|
2017-02-14 07:00:22 +00:00
|
|
|
buildInputs = [
|
|
|
|
libtoxcore dbus libvpx libX11 openal freetype
|
|
|
|
libv4l libXrender fontconfig libXext libXft filter-audio
|
|
|
|
libsodium
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake git pkgconfig
|
|
|
|
];
|
2014-07-31 10:56:16 +00:00
|
|
|
|
2017-02-25 07:50:52 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_UPDATER=OFF"
|
|
|
|
];
|
|
|
|
|
2014-07-31 10:56:16 +00:00
|
|
|
doCheck = false;
|
2016-02-17 14:43:53 +00:00
|
|
|
|
2014-07-31 10:56:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight Tox client";
|
2017-02-25 07:50:52 +00:00
|
|
|
homepage = https://github.com/uTox/uTox;
|
2014-07-31 10:56:16 +00:00
|
|
|
license = licenses.gpl3;
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar jgeerds ];
|
2014-12-04 01:53:48 +00:00
|
|
|
platforms = platforms.all;
|
2014-07-31 10:56:16 +00:00
|
|
|
};
|
|
|
|
}
|