about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-11 08:48:46 +0000
committerLudovic Courtès <ludo@gnu.org>2009-02-11 08:48:46 +0000
commitf94091ad093a49043548b31bc727355e4e21fd93 (patch)
tree1b8e8061336ea650c5846ddd7aaf667ce1957077 /pkgs/applications/networking/instant-messengers/bitlbee
parent79d3e0926d68bb760f1a9f28c862c38e6cd8cc45 (diff)
BitlBee 1.2.3.
svn path=/nixpkgs/trunk/; revision=14030
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/bitlbee')
-rw-r--r--pkgs/applications/networking/instant-messengers/bitlbee/default.nix23
1 files changed, 18 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
index 2dfce27d313c6..23ae06841381b 100644
--- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
@@ -1,17 +1,30 @@
-args: with args;
+{ fetchurl, stdenv, gnutls, glib, pkgconfig }:
 
 stdenv.mkDerivation rec {
-  name = "bitlbee-1.2.1";
+  name = "bitlbee-1.2.3";
+
   src = fetchurl {
     url = "mirror://bitlbee/src/" + name + ".tar.gz";
-    sha256 = "01ld349f5k89lk6j7xn4sdbbf1577kp845vmnj3sfaza9s1fhm26";
+    sha256 = "1qj5cx0lqhg6dy2gdjb05ap963r84rv1b96iz23c97c2ihc31fqc";
   };
 
   buildInputs = [ gnutls glib pkgconfig ];
 
   meta = {
-    description = ''BitlBee, an IRC to other chat networks gateway.'';
+    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.
+    '';
+
     homepage = http://www.bitlbee.org/;
-    license = "GPL";
+    license = "GPLv2+";
   };
 }