nixpkgs/pkgs/applications/networking/instant-messengers/gtmess/default.nix
2021-01-15 14:24:03 +07:00

20 lines
528 B
Nix

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