nixpkgs/pkgs/development/libraries/libtoxcore/new-api/default.nix

61 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, libtool, automake, libsodium, ncurses, libopus
, libvpx, check, libconfig, pkgconfig }:
2013-10-11 19:32:36 +00:00
stdenv.mkDerivation rec {
2015-07-01 07:16:09 +00:00
name = "tox-core-dev-20150629";
2013-10-11 19:32:36 +00:00
src = fetchFromGitHub {
owner = "irungentoo";
repo = "toxcore";
2015-07-01 07:16:09 +00:00
rev = "219fabc0f5dbaac7968cb7728d25dface3ebb2ea";
sha256 = "1rsnxa5b7i2zclx0kzbf4a5mds0jfkvfjz1s4whzk7rf8w3vpqkh";
2013-10-11 19:32:36 +00:00
};
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
'';
2013-10-11 19:32:36 +00:00
preConfigure = ''
autoreconf -i
'';
configureFlags = [
"--with-libsodium-headers=${libsodium}/include"
"--with-libsodium-libs=${libsodium}/lib"
"--enable-ntox"
"--enable-daemon"
];
2013-10-11 19:32:36 +00:00
buildInputs = [
autoconf libtool automake libsodium ncurses
2014-09-19 08:30:31 +00:00
check libconfig pkgconfig
] ++ stdenv.lib.optionals (!stdenv.isArm) [
2014-09-23 20:52:50 +00:00
libopus
];
2013-10-11 19:32:36 +00:00
2014-09-23 20:52:50 +00:00
propagatedBuildInputs = stdenv.lib.optionals (!stdenv.isArm) [ libvpx ];
2014-12-05 14:03:58 +00:00
# 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;
2013-10-11 19:32:36 +00:00
meta = with stdenv.lib; {
2013-10-11 19:32:36 +00:00
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ viric jgeerds ];
platforms = platforms.all;
2013-10-11 19:32:36 +00:00
};
}
2015-07-01 07:16:09 +00:00