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

56 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
version = "900d72f951";
date = "20140921";
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";
sha256 = "1fwgflizb21mp4jwkfac7mgmahlly1f3ldbma6h8h6a2qf3pkn2r";
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
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 ];
doCheck = !stdenv.isArm;
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;
};
}