2011-01-05 10:48:21 +00:00
|
|
|
{ fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr }:
|
2008-02-17 15:33:04 +00:00
|
|
|
|
2014-09-07 02:47:44 +01:00
|
|
|
with stdenv.lib;
|
2008-02-17 15:33:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-31 05:25:03 +01:00
|
|
|
name = "bitlbee-3.4";
|
2009-02-11 08:48:46 +00:00
|
|
|
|
2008-02-17 15:33:04 +00:00
|
|
|
src = fetchurl {
|
2010-10-07 08:29:44 +01:00
|
|
|
url = "mirror://bitlbee/src/${name}.tar.gz";
|
2015-05-31 05:25:03 +01:00
|
|
|
sha256 = "0plx4dryf8i6hz7vghg84z5f6w6rkw1l8ckl4c4wh5zxpd3ddfnf";
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
|
2011-01-05 10:48:21 +00:00
|
|
|
buildInputs = [ gnutls glib pkgconfig libotr ]
|
2014-09-07 02:47:44 +01:00
|
|
|
++ optional doCheck check;
|
2010-10-07 08:29:44 +01:00
|
|
|
|
2014-09-24 11:43:36 +01:00
|
|
|
configureFlags = [
|
2014-09-07 02:47:44 +01:00
|
|
|
"--gcov=1"
|
|
|
|
"--otr=1"
|
|
|
|
"--ssl=gnutls"
|
|
|
|
];
|
2011-01-05 10:48:21 +00:00
|
|
|
|
2010-10-07 08:29:44 +01:00
|
|
|
doCheck = true;
|
2008-02-17 15:33:04 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "IRC instant messaging gateway";
|
2009-02-11 08:48:46 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
BitlBee brings IM (instant messaging) to IRC clients. It's a
|
|
|
|
great solution for people who have an IRC client running all the
|
|
|
|
time and don't want to run an additional MSN/AIM/whatever
|
|
|
|
client.
|
|
|
|
|
|
|
|
BitlBee currently supports the following IM networks/protocols:
|
|
|
|
XMPP/Jabber (including Google Talk), MSN Messenger, Yahoo!
|
|
|
|
Messenger, AIM and ICQ.
|
|
|
|
'';
|
|
|
|
|
2008-02-17 15:33:04 +00:00
|
|
|
homepage = http://www.bitlbee.org/;
|
2014-09-07 02:47:44 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2010-10-07 08:29:44 +01:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-09-07 02:47:44 +01:00
|
|
|
platforms = platforms.gnu; # arbitrary choice
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
}
|