mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
211be0db63
svn path=/nixpkgs/trunk/; revision=32515
18 lines
483 B
Nix
18 lines
483 B
Nix
{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";
|
|
|
|
meta = {
|
|
description = "IRC client using GTK".
|
|
homepage = http://www.xchat.org;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|