2007-05-14 00:13:48 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, tcl, gtk}:
|
2005-11-22 12:05:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-01-11 22:32:17 +00:00
|
|
|
name = "xchat-2.8.8";
|
2005-11-22 12:05:18 +00:00
|
|
|
src = fetchurl {
|
2012-01-11 22:32:17 +00:00
|
|
|
url = http://www.xchat.org/files/source/2.8/xchat-2.8.8.tar.bz2;
|
|
|
|
sha256 = "0d6d69437b5e1e45f3e66270fe369344943de8a1190e498fafa5296315a27db0";
|
2005-11-22 12:05:18 +00:00
|
|
|
};
|
2007-05-14 00:13:48 +00:00
|
|
|
buildInputs = [pkgconfig tcl gtk];
|
2005-11-22 12:05:18 +00:00
|
|
|
configureFlags = "--disable-nls";
|
2008-01-30 19:49:42 +00:00
|
|
|
|
|
|
|
meta = {
|
2012-02-23 17:56:52 +00:00
|
|
|
description = "IRC client using GTK";
|
2008-01-30 19:49:42 +00:00
|
|
|
homepage = http://www.xchat.org;
|
2012-02-23 16:20:09 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2005-11-22 12:05:18 +00:00
|
|
|
}
|