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

stdenv.mkDerivation rec {
  pname = "gtmess";
  version = "0.97";

  src = fetchurl {
    url = "mirror://sourceforge/gtmess/gtmess-${version}.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;
  };
}