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