79 lines
1.3 KiB
Nix
79 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, perl
|
|
, libtoxcore
|
|
, libpthreadstubs
|
|
, libXdmcp
|
|
, libXScrnSaver
|
|
, qtbase
|
|
, qtsvg
|
|
, qttools
|
|
, qttranslations
|
|
, ffmpeg
|
|
, filter-audio
|
|
, libexif
|
|
, libsodium
|
|
, libopus
|
|
, libvpx
|
|
, openal
|
|
, pcre
|
|
, qrencode
|
|
, sqlcipher
|
|
, AVFoundation
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "qtox";
|
|
version = "1.17.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qTox";
|
|
repo = "qTox";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-naKWoodSMw0AEtACvkASFmw9t0H0d2pcqOW79NNTYF0=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libtoxcore
|
|
libpthreadstubs
|
|
libXdmcp
|
|
libXScrnSaver
|
|
qtbase
|
|
qtsvg
|
|
qttranslations
|
|
ffmpeg
|
|
filter-audio
|
|
libexif
|
|
libopus
|
|
libsodium
|
|
libvpx
|
|
openal
|
|
pcre
|
|
qrencode
|
|
sqlcipher
|
|
] ++ lib.optionals stdenv.isDarwin [ AVFoundation ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ]
|
|
++ lib.optionals stdenv.isDarwin [ perl ];
|
|
|
|
cmakeFlags = [
|
|
"-DGIT_DESCRIBE=v${version}"
|
|
"-DENABLE_STATUSNOTIFIER=False"
|
|
"-DENABLE_GTK_SYSTRAY=False"
|
|
"-DENABLE_APPINDICATOR=False"
|
|
"-DTIMESTAMP=1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "Qt Tox client";
|
|
homepage = "https://tox.chat";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ akaWolf peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|