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

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

  meta = {
    homepage = http://www.xchat.org;
  };
}