ab15a62c68
Beware that stdenv doesn't build. It seems something more will be needed than just resolution of merge conflicts.
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libsodium, ncurses, libopus
|
|
, libvpx, check, libconfig, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tox-core-dev-20160319";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irungentoo";
|
|
repo = "toxcore";
|
|
rev = "532629d486e3361c7d8d95b38293cc7d61dc4ee5";
|
|
sha256 = "0x8mjrjiafgia9vy7w4zhfzicr2fljx8xgm2ppi4kva2r2z1wm2f";
|
|
};
|
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
postPatch = ''
|
|
# within Nix chroot builds, localhost is unresolvable
|
|
sed -i -e '/DEFTESTCASE(addr_resolv_localhost)/d' \
|
|
auto_tests/network_test.c
|
|
# takes WAAAY too long (~10 minutes) and would timeout
|
|
sed -i -e '/DEFTESTCASE[^(]*(many_clients\>/d' \
|
|
auto_tests/tox_test.c
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-libsodium-headers=${libsodium.dev}/include"
|
|
"--with-libsodium-libs=${libsodium.out}/lib"
|
|
"--enable-ntox"
|
|
"--enable-daemon"
|
|
];
|
|
|
|
buildInputs = [
|
|
autoreconfHook libsodium ncurses check libconfig pkgconfig
|
|
] ++ stdenv.lib.optionals (!stdenv.isArm) [
|
|
libopus
|
|
];
|
|
|
|
propagatedBuildInputs = stdenv.lib.optionals (!stdenv.isArm) [ libvpx ];
|
|
|
|
# Some tests fail randomly due to timeout. This kind of problem is well known
|
|
# by upstream: https://github.com/irungentoo/toxcore/issues/{950,1054}
|
|
# They don't recommend running tests on 50core machines with other cpu-bound
|
|
# tests running in parallel.
|
|
#
|
|
# NOTE: run the tests locally on your machine before upgrading this package!
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ viric jgeerds ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|