2017-07-02 18:58:31 +01:00
|
|
|
{ fetchurl, fetchpatch, stdenv, gnutls, glib, pkgconfig, check, libotr, python,
|
|
|
|
enableLibPurple ? false, pidgin ? null }:
|
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 {
|
2017-01-31 15:57:57 +00:00
|
|
|
name = "bitlbee-3.5.1";
|
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";
|
2017-01-31 15:57:57 +00:00
|
|
|
sha256 = "0sgsn0fv41rga46mih3fyv65cvfa6rvki8x92dn7bczbi7yxfdln";
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
|
2017-01-16 19:42:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optional doCheck check;
|
|
|
|
|
2017-07-02 18:58:31 +01:00
|
|
|
buildInputs = [ gnutls glib libotr python ]
|
|
|
|
++ optional enableLibPurple pidgin;
|
|
|
|
|
|
|
|
preConfigure = optionalString enableLibPurple
|
|
|
|
"export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${pidgin}/lib/pkgconfig";
|
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"
|
2016-03-20 20:22:18 +00:00
|
|
|
"--pidfile=/var/lib/bitlbee/bitlbee.pid"
|
2017-07-02 18:58:31 +01:00
|
|
|
]
|
|
|
|
++ optional enableLibPurple "--purple=1";
|
2011-01-05 10:48:21 +00:00
|
|
|
|
2017-07-02 18:58:31 +01:00
|
|
|
buildPhase = optionalString (!enableLibPurple) ''
|
2015-09-08 20:05:48 +01:00
|
|
|
make install-dev
|
|
|
|
'';
|
|
|
|
|
2017-07-02 18:58:31 +01:00
|
|
|
doCheck = !enableLibPurple; # Checks fail with libpurple for some reason
|
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-07-06 17:16:49 +01:00
|
|
|
maintainers = with maintainers; [ wkennington pSub ];
|
2014-09-07 02:47:44 +01:00
|
|
|
platforms = platforms.gnu; # arbitrary choice
|
2008-02-17 15:33:04 +00:00
|
|
|
};
|
|
|
|
}
|