2011-01-05 11:48:21 +01:00
|
|
|
{ fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr }:
|
2008-02-17 16:33:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-28 14:08:08 +02:00
|
|
|
name = "bitlbee-3.0.3";
|
2009-02-11 09:48:46 +01:00
|
|
|
|
2008-02-17 16:33:04 +01:00
|
|
|
src = fetchurl {
|
2010-10-07 09:29:44 +02:00
|
|
|
url = "mirror://bitlbee/src/${name}.tar.gz";
|
2011-07-28 14:08:08 +02:00
|
|
|
sha256 = "09dgwfqznd2cnqraksivmh132nnl99gwgplynjmfsyyf6y4pbjl2";
|
2008-02-17 16:33:04 +01:00
|
|
|
};
|
|
|
|
|
2011-01-05 11:48:21 +01:00
|
|
|
buildInputs = [ gnutls glib pkgconfig libotr ]
|
2010-10-07 09:29:44 +02:00
|
|
|
++ stdenv.lib.optional doCheck check;
|
|
|
|
|
2011-01-05 11:48:21 +01:00
|
|
|
configureFlags = [ "--otr=1" ];
|
|
|
|
|
|
|
|
preCheck = "mkdir tests/.depend";
|
2010-10-07 09:29:44 +02:00
|
|
|
doCheck = true;
|
2008-02-17 16:33:04 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-02-11 09:48:46 +01:00
|
|
|
description = "BitlBee, an IRC to other chat networks gateway";
|
|
|
|
|
|
|
|
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 16:33:04 +01:00
|
|
|
homepage = http://www.bitlbee.org/;
|
2009-02-11 09:48:46 +01:00
|
|
|
license = "GPLv2+";
|
2010-10-07 09:29:44 +02:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2008-02-17 16:33:04 +01:00
|
|
|
};
|
|
|
|
}
|