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
@@ -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";
};
}