21 lines
554 B
Nix
21 lines
554 B
Nix
{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;
|
|
};
|
|
}
|