about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
blob: 2dfce27d313c6cef5b50a0e8560c7de68c0480dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;

stdenv.mkDerivation rec {
  name = "bitlbee-1.2.1";
  src = fetchurl {
    url = "mirror://bitlbee/src/" + name + ".tar.gz";
    sha256 = "01ld349f5k89lk6j7xn4sdbbf1577kp845vmnj3sfaza9s1fhm26";
  };

  buildInputs = [ gnutls glib pkgconfig ];

  meta = {
    description = ''BitlBee, an IRC to other chat networks gateway.'';
    homepage = http://www.bitlbee.org/;
    license = "GPL";
  };
}