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

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

  src = fetchurl {
    url = mirror://sourceforge/gtmess/gtmess-0.97.tar.gz;
    sha256 = "1ipmqsrj0r1ssbgs2fpr4x5vnzlxlqhx9jrnadp1jw7s0sxpjqv0";
  };

  buildInputs = [ ncurses openssl tcl tk];

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