summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/gtmess/default.nix
blob: fec5462c47a7307a2ed4133060de69bb17b532ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{lib, 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 = lib.licenses.gpl2Plus;
    platforms = with lib.platforms; linux;
  };
}