2021-01-14 21:42:41 -08:00
|
|
|
{lib, stdenv, fetchurl, ncurses, openssl, tcl, tk}:
|
2011-11-04 03:28:18 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-01-14 15:24:21 -08:00
|
|
|
name = "gtmess-0.97";
|
2011-11-04 03:28:18 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "mirror://sourceforge/gtmess/gtmess-0.97.tar.gz";
|
2015-01-14 15:24:21 -08:00
|
|
|
sha256 = "1ipmqsrj0r1ssbgs2fpr4x5vnzlxlqhx9jrnadp1jw7s0sxpjqv0";
|
2011-11-04 03:28:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses openssl tcl tk];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Console MSN Messenger client for Linux and other unix systems";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://gtmess.sourceforge.net/";
|
2021-01-14 21:42:41 -08:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = with lib.platforms; linux;
|
2011-11-04 03:28:18 -07:00
|
|
|
};
|
|
|
|
}
|