Adding gtmess

svn path=/nixpkgs/trunk/; revision=30221
This commit is contained in:
Lluís Batlle i Rossell 2011-11-04 10:28:18 +00:00
parent 9d3e13f7f3
commit 0f0ca48a8d
2 changed files with 21 additions and 0 deletions

@ -0,0 +1,19 @@
{stdenv, fetchurl, ncurses, openssl, tcl, tk}:
stdenv.mkDerivation {
name = "gtmess-0.96";
src = fetchurl {
url = mirror://sourceforge/gtmess/gtmess-0.96.tar.gz;
sha256 = "0w29wyshx32485c7wazj51lvk2j9k1kn2jmwpf916r4513hwplvm";
};
buildInputs = [ ncurses openssl tcl tk];
meta = {
description = "Console MSN Messenger client for Linux and other unix systems";
homepage = http://gtmess.sourceforge.net/
license = "GPLv2+";
platforms = with stdenv.lib.platforms; linux;
};
}

@ -801,6 +801,8 @@ let
gtkvnc = callPackage ../tools/admin/gtk-vnc {};
gtmess = callPackage ../applications/networking/instant-messengers/gtmess { };
gupnp = callPackage ../development/libraries/gupnp {
inherit (gnome) libsoup;
};