2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, msgpack
|
2021-01-19 07:50:56 +01:00
|
|
|
, libvpx, check, libconfig, pkg-config }:
|
2017-02-14 07:57:48 +01:00
|
|
|
|
2018-04-19 12:19:23 +02:00
|
|
|
let
|
|
|
|
generic = { version, sha256 }:
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "libtoxcore";
|
|
|
|
inherit version;
|
2018-04-19 12:19:23 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TokTok";
|
|
|
|
repo = "c-toxcore";
|
|
|
|
rev = "v${version}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_NTOX=ON"
|
|
|
|
"-DDHT_BOOTSTRAP=ON"
|
|
|
|
"-DBOOTSTRAP_DAEMON=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-08-18 01:53:33 +02:00
|
|
|
libsodium msgpack ncurses libconfig
|
2021-01-21 18:00:13 +01:00
|
|
|
] ++ lib.optionals (!stdenv.isAarch32) [
|
2018-04-19 12:19:23 +02:00
|
|
|
libopus libvpx
|
|
|
|
];
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-04-19 12:19:23 +02:00
|
|
|
|
2018-05-02 22:40:38 +02:00
|
|
|
doCheck = false; # hangs, tries to access the net?
|
|
|
|
checkInputs = [ check ];
|
|
|
|
|
2019-12-23 17:06:21 +01:00
|
|
|
postFixup =''
|
|
|
|
sed -i $out/lib/pkgconfig/*.pc \
|
|
|
|
-e "s|^libdir=.*|libdir=$out/lib|" \
|
|
|
|
-e "s|^includedir=.*|includedir=$out/include|"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2018-04-19 12:19:23 +02:00
|
|
|
description = "P2P FOSS instant messaging application aimed to replace Skype";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://tox.chat";
|
2018-04-19 12:19:23 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2017-02-14 07:57:48 +01:00
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
in {
|
2018-04-19 12:19:23 +02:00
|
|
|
libtoxcore_0_1 = generic {
|
|
|
|
version = "0.1.11";
|
|
|
|
sha256 = "1fya5gfiwlpk6fxhalv95n945ymvp2iidiyksrjw1xw95fzsp1ij";
|
|
|
|
};
|
2017-02-14 07:57:48 +01:00
|
|
|
|
2018-04-19 12:19:23 +02:00
|
|
|
libtoxcore_0_2 = generic {
|
2020-06-06 18:46:10 +02:00
|
|
|
version = "0.2.12";
|
|
|
|
sha256 = "0a6sqpm00d2rn0nviqfz4gh9ck1wzci6rxgmqmcyryl5ca19ffvp";
|
2017-02-14 07:57:48 +01:00
|
|
|
};
|
|
|
|
}
|