summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee-otr/default.nix
blob: 972c812b25669dee853885bbd553a21a39f2c72c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchbzr, gnutls, glib, pkgconfig, libotr, libgcrypt
, libxslt, xmlto, docbook_xsl, docbook_xml_dtd_42, perl }:

let revision = "369"; in
stdenv.mkDerivation rec {
  name = "bitlbee-otr-r${revision}";
  src = fetchbzr {
    url = "http://khjk.org/~pesco/bitlbee-otr";
    sha256 = "0fb7987ec4a321e07f22690ed6617db9f377fdf4e65a531d8da28a950817074f";
    inherit revision;
  };

  patchPhase = ''
    # Both OTR and GnuTLS depend on libgcrypt, but for some reason, `bitlbee'
    # must be explicitly linked against it.
    sed -i "configure" -e "s|-f \$""{i}/lib/libotr.a|0 -eq 0|g ;
                           s|otrprefix=\$""{i}|otrprefix=\"${libotr}\"|g ;
                           s|-lotr|-lotr -L${libgcrypt} -lgcrypt|g";
  '';

  buildInputs = [ gnutls glib pkgconfig libotr libgcrypt
    libxslt xmlto docbook_xsl docbook_xml_dtd_42 perl
  ];

  meta = {
    description = ''BitlBee, an IRC to other chat networks gateway.'';

    longDescription = ''
      This unofficial version adds support for communication encryption
      and authentication via the OTR (off-the-record) library.
    '';

    # See also http://bugs.bitlbee.org/bitlbee/ticket/115 .
    homepage = http://khjk.org/bitlbee-otr/;

    license = "GPL";
  };
}