nixpkgs/pkgs/applications/networking/irc/chatzilla/default.nix
Eelco Dolstra 14b6a2d82d * Chatzilla 0.9.79.
svn path=/nixpkgs/trunk/; revision=9996
2007-12-31 17:50:38 +00:00

21 lines
509 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "chatzilla-0.9.79";
builder = ./builder.sh;
src = fetchurl {
# Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.79-xr.zip;
sha256 = "0irbi8y4y2nlbwvhmmln5h5f4wv7spd1rqg7dxg7pc93s09p5i09";
};
buildInputs = [unzip];
meta = {
homepage = http://chatzilla.hacksrus.com/;
description = "Stand-alone version of Chatzilla, an IRC client";
};
}