summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/gtmess/default.nix
blob: 64021c93bc83ca615b2319abb7cccb68bb69b202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, ncurses, openssl, tcl, tk}:

stdenv.mkDerivation {
  name = "gtmess-0.96";

  src = fetchurl {
    url = mirror://sourceforge/gtmess/gtmess-0.96.tar.gz;
    sha256 = "0w29wyshx32485c7wazj51lvk2j9k1kn2jmwpf916r4513hwplvm";
  };

  buildInputs = [ ncurses openssl tcl tk];

  patches = [ ./va_list.patch ];

  meta = {
    description = "Console MSN Messenger client for Linux and other unix systems";
    homepage = http://gtmess.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = with stdenv.lib.platforms; linux;
  };
}