mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
0f0ca48a8d
svn path=/nixpkgs/trunk/; revision=30221
20 lines
512 B
Nix
20 lines
512 B
Nix
{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;
|
|
};
|
|
}
|