2017-03-05 02:17:10 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2014-10-07 06:55:50 +01:00
|
|
|
, guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool
|
|
|
|
, libunwind, ncurses, curl, jansson, texinfo
|
|
|
|
, automake, autoconf
|
|
|
|
}:
|
2010-12-29 19:20:55 +00:00
|
|
|
|
2017-03-05 02:17:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "freetalk-${version}";
|
|
|
|
version = "4.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GNUFreetalk";
|
|
|
|
repo = "freetalk";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "09jwk2i8qd8c7wrn9xbqcwm32720dwxis22kf3jpbg8mn6w6i757";
|
2014-10-07 06:55:50 +01:00
|
|
|
};
|
2010-12-29 19:20:55 +00:00
|
|
|
|
2014-10-07 06:55:50 +01:00
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
2010-12-29 19:20:55 +00:00
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-03-05 02:17:10 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
guile glib loudmouth gmp libidn readline libtool
|
2017-03-05 02:17:10 +00:00
|
|
|
libunwind ncurses curl jansson texinfo
|
|
|
|
autoconf automake
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-10-07 06:55:50 +01:00
|
|
|
description = "Console XMPP client";
|
2017-03-05 02:17:10 +00:00
|
|
|
license = licenses.gpl3Plus ;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
2018-12-01 18:22:13 +00:00
|
|
|
downloadPage = "https://www.gnu.org/software/freetalk/";
|
2010-12-29 19:20:55 +00:00
|
|
|
};
|
2014-10-07 06:55:50 +01:00
|
|
|
}
|