nixpkgs/pkgs/applications/networking/irc/chatzilla/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

18 lines
419 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "chatzilla-0.9.74";
builder = ./builder.sh;
src = fetchurl {
# Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
url = http://nix.cs.uu.nl/dist/tarballs/chatzilla-0.9.74-xr.zip;
md5 = "a1eada15b172eab6a771afa5f8670f7a";
};
buildInputs = [unzip];
meta = {
description = "Stand-alone version of Chatzilla, an IRC client";
};
}