about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-02-17 15:33:04 +0000
committerLudovic Courtès <ludo@gnu.org>2008-02-17 15:33:04 +0000
commit5f8dd658cb35c37d955726489569dda610a2fdff (patch)
tree517fcc4f38f09ab88810f34fa1e4364dc25fd44c /pkgs/applications/networking/instant-messengers/bitlbee/default.nix
parent4d86923c627ffef73f8f01bfd52d9cac4f5deed6 (diff)
Add BitlBee, an IRC to other chat networks gateway.
svn path=/nixpkgs/trunk/; revision=10715
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/bitlbee/default.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/bitlbee/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
new file mode 100644
index 0000000000000..ed36ca779b6d6
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
@@ -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";
+  };
+}