Add BitlBee, an IRC to other chat networks gateway.

svn path=/nixpkgs/trunk/; revision=10715
This commit is contained in:
Ludovic Courtès 2008-02-17 15:33:04 +00:00
parent 4d86923c62
commit 5f8dd658cb
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args: with args;
stdenv.mkDerivation rec {
name = "bitlbee-1.0.4";
src = fetchurl {
url = "mirror://bitlbee/src/" + name + ".tar.gz";
sha256 = "072vdpz4z3bmskm04crrkj946hj0gnnd6w0vqrb7xmj1lrzg68vg";
};
buildInputs = [ gnutls glib pkgconfig ];
meta = {
description = ''BitlBee, an IRC to other chat networks gateway.'';
homepage = http://www.bitlbee.org/;
license = "GPL";
};
}

View File

@ -68,4 +68,13 @@ rec {
http://www.wikifusion.info/nongnu/
];
# BitlBee mirrors, see http://www.bitlbee.org/main.php/mirrors.html .
bitlbee = [
http://get.bitlbee.org/
http://get.bitlbee.be/
http://get.us.bitlbee.org/
http://ftp.snt.utwente.nl/pub/software/bitlbee/
http://bitlbee.intergenia.de/
];
}

View File

@ -4457,6 +4457,11 @@ rec {
inherit fetchurl stdenv python makeWrapper;
};
bitlbee = import ../applications/networking/instant-messengers/bitlbee {
inherit fetchurl stdenv gnutls pkgconfig;
inherit (gtkLibs) glib;
};
# commented out because it's using the new configuration style proposal which is unstable
#biew = import ../applications/misc/biew {
# inherit lib stdenv fetchurl ncurses;