2009-02-11 09:48:46 +01:00
|
|
|
{ fetchurl, stdenv, gnutls, glib, pkgconfig }:
|
2008-02-17 16:33:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2009-12-30 23:11:43 +01:00
|
|
|
name = "bitlbee-1.2.4";
|
2009-02-11 09:48:46 +01:00
|
|
|
|
2008-02-17 16:33:04 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://bitlbee/src/" + name + ".tar.gz";
|
2009-12-30 23:11:43 +01:00
|
|
|
sha256 = "1lwcjh1r81xqf6fxjwd2a2hv8dq9g0iyc8dnbr1pgas4vmjg9xf2";
|
2008-02-17 16:33:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gnutls glib pkgconfig ];
|
|
|
|
|
|
|
|
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+";
|
2008-02-17 16:33:04 +01:00
|
|
|
};
|
|
|
|
}
|