mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
04d6db0985
svn path=/nixpkgs/trunk/; revision=4303
12 lines
313 B
Nix
12 lines
313 B
Nix
{stdenv, fetchurl, glib, pkgconfig, tcl, gtk}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xchat-2.6.0";
|
|
src = fetchurl {
|
|
url = http://www.xchat.org/files/source/2.6/xchat-2.6.0.tar.bz2;
|
|
md5 = "0c827bf6df0572231cbbb1e25965fb61";
|
|
};
|
|
buildInputs = [glib pkgconfig tcl gtk];
|
|
configureFlags = "--disable-nls";
|
|
}
|