2020-11-26 19:14:13 +00:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, perl
|
|
|
|
, libtoxcore, libpthreadstubs, libXdmcp, libXScrnSaver
|
2018-04-19 11:20:27 +01:00
|
|
|
, qtbase, qtsvg, qttools, qttranslations
|
2020-06-07 13:39:09 +01:00
|
|
|
, ffmpeg_3, filter-audio, libexif, libsodium, libopus
|
2018-04-19 11:20:27 +01:00
|
|
|
, libvpx, openal, pcre, qrencode, sqlcipher
|
2020-11-26 19:14:13 +00:00
|
|
|
, AVFoundation }:
|
2018-04-19 11:20:27 +01:00
|
|
|
|
2020-11-26 19:14:13 +00:00
|
|
|
mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "qtox";
|
2020-11-26 19:14:13 +00:00
|
|
|
version = "1.17.3";
|
2014-09-18 08:51:43 +01:00
|
|
|
|
2016-02-15 00:07:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-11-26 19:14:13 +00:00
|
|
|
owner = "qTox";
|
|
|
|
repo = "qTox";
|
|
|
|
rev = "v${version}";
|
2020-11-26 18:24:29 +00:00
|
|
|
sha256 = "19xgw9bqirxbgvj5cdh20qxh61pkwk838lq1l78n6py1qrs7z5wp";
|
2014-09-18 08:51:43 +01:00
|
|
|
};
|
|
|
|
|
2017-02-14 07:00:42 +00:00
|
|
|
buildInputs = [
|
2017-07-19 03:44:42 +01:00
|
|
|
libtoxcore
|
|
|
|
libpthreadstubs libXdmcp libXScrnSaver
|
2017-11-09 12:47:29 +00:00
|
|
|
qtbase qtsvg qttranslations
|
2020-06-07 13:39:09 +01:00
|
|
|
ffmpeg_3 filter-audio libexif libopus libsodium
|
2018-02-27 18:58:51 +00:00
|
|
|
libvpx openal pcre qrencode sqlcipher
|
2020-11-26 19:14:13 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [ AVFoundation] ;
|
2015-06-29 18:43:40 +01:00
|
|
|
|
2020-11-26 19:14:13 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl ];
|
2017-09-11 07:54:48 +01:00
|
|
|
|
2017-03-21 02:04:21 +00:00
|
|
|
cmakeFlags = [
|
2020-11-26 19:14:13 +00:00
|
|
|
"-DGIT_DESCRIBE=v${version}"
|
2017-09-11 07:54:48 +01:00
|
|
|
"-DENABLE_STATUSNOTIFIER=False"
|
|
|
|
"-DENABLE_GTK_SYSTRAY=False"
|
|
|
|
"-DENABLE_APPINDICATOR=False"
|
2018-04-19 11:20:27 +01:00
|
|
|
"-DTIMESTAMP=1"
|
2017-03-21 02:04:21 +00:00
|
|
|
];
|
|
|
|
|
2020-11-26 19:14:13 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-09-25 17:36:23 +01:00
|
|
|
description = "Qt Tox client";
|
2020-11-26 19:14:13 +00:00
|
|
|
homepage = "https://tox.chat";
|
|
|
|
license = licenses.gpl3;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ akaWolf peterhoeg ];
|
2020-11-26 19:14:13 +00:00
|
|
|
platforms = platforms.all;
|
2014-09-18 08:51:43 +01:00
|
|
|
};
|
2015-08-21 17:51:12 +01:00
|
|
|
}
|