nixpkgs/pkgs/development/libraries/libtoxcore/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, autoconf, libtool, automake, libsodium, ncurses, libopus
, libvpx, check, libconfig, pkgconfig }:
2013-10-11 19:32:36 +00:00
let
2014-09-18 07:23:01 +00:00
version = "7ec83c3623";
date = "20140918";
2013-10-11 19:32:36 +00:00
in
stdenv.mkDerivation rec {
name = "tox-core-${date}-${version}";
src = fetchurl {
url = "https://github.com/irungentoo/toxcore/tarball/${version}";
2013-10-11 19:32:36 +00:00
name = "${name}.tar.gz";
2014-09-18 07:23:01 +00:00
sha256 = "026zv0brdqxf0h6zgyqpb55099yc6ghqgf8lrkdsfrrpb7ilg0is";
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"
];
2013-10-11 19:32:36 +00:00
buildInputs = [
autoconf libtool automake libsodium ncurses libopus
libvpx check libconfig pkgconfig
];
2013-10-11 19:32:36 +00:00
2014-09-18 11:53:40 +00:00
doCheck = false; # certian tests fail, upstream advice is to wait
2013-10-11 19:32:36 +00:00
meta = {
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
license = stdenv.lib.licenses.gpl3Plus;
2013-10-11 19:32:36 +00:00
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = stdenv.lib.platforms.all;
};
}