summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/xchat/default.nix
blob: 1999bd030cbc40db8b47fc9e7f6d2a8bc9faf1c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, pkgconfig, tcl, gtk}:

stdenv.mkDerivation {
  name = "xchat-2.8.8";
  src = fetchurl {
    url = http://www.xchat.org/files/source/2.8/xchat-2.8.8.tar.bz2;
    sha256 = "0d6d69437b5e1e45f3e66270fe369344943de8a1190e498fafa5296315a27db0";
  };
  buildInputs = [pkgconfig tcl gtk];
  configureFlags = "--disable-nls";

  patches = [ ./glib-top-level-header.patch ];

  meta = {
    description = "IRC client using GTK";
    homepage = http://www.xchat.org;
    platforms = with stdenv.lib.platforms; linux;
  };
}