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