nixpkgs/pkgs/applications/networking/instant-messengers/freetalk/default.nix

34 lines
881 B
Nix
Raw Normal View History

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