1 { lib, stdenv, fetchurl
2 , guile, pkg-config, glib, loudmouth, gmp, libidn, readline, libtool
3 , libunwind, ncurses, curl, jansson, texinfo
5 stdenv.mkDerivation rec {
10 url = "mirror://gnu/freetalk/freetalk-${version}.tar.gz";
11 hash = "sha256-u1tPKacGry+JGYeAIgDia3N7zs5EM4FyQZdV8e7htYA=";
14 nativeBuildInputs = [ pkg-config texinfo ];
16 guile glib loudmouth gmp libidn readline libtool
17 libunwind ncurses curl jansson
18 ] ++ lib.optionals stdenv.isDarwin [
22 env.NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-largp";
25 description = "Console XMPP client";
26 mainProgram = "freetalk";
27 license = licenses.gpl3Plus ;
28 maintainers = with maintainers; [ raskin ];
29 platforms = platforms.unix;
30 downloadPage = "https://www.gnu.org/software/freetalk/";