2013-10-11 21:32:36 +02:00
|
|
|
{ stdenv, fetchurl, autoconf, libtool, automake, libsodium, ncurses
|
|
|
|
, libconfig, pkgconfig }:
|
|
|
|
|
|
|
|
let
|
2014-02-24 19:17:46 +01:00
|
|
|
version = "388b1229b";
|
|
|
|
date = "20140220";
|
2013-10-11 21:32:36 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tox-core-${date}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/irungentoo/ProjectTox-Core/tarball/${version}";
|
|
|
|
name = "${name}.tar.gz";
|
2014-02-24 19:17:46 +01:00
|
|
|
sha256 = "12vggiv0gyv8a2rd5qrv04b7yhfhxb7r0yh75gg5n4jdpcbhvgsd";
|
2013-10-11 21:32:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
autoreconf -i
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--with-libsodium-headers=${libsodium}/include"
|
|
|
|
"--with-libsodium-libs=${libsodium}/lib"
|
|
|
|
"--enable-ntox" ];
|
|
|
|
|
|
|
|
buildInputs = [ autoconf libtool automake libsodium ncurses libconfig
|
|
|
|
pkgconfig ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|