nixpkgs/pkgs/applications/networking/irc/chatzilla/default.nix
Eelco Dolstra 9f451704dd * Chatzilla 0.9.85 (on the Xulrunner from Firefox 3.5).
svn path=/nixpkgs/trunk/; revision=16248
2009-07-08 13:19:44 +00:00

24 lines
549 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "chatzilla-0.9.85";
src = fetchurl {
# Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.85-xr.zip;
sha256 = "0jd7mq05715vad82sl4ycr7ga587k53dijxz371y3zwpf8479hqx";
};
buildInputs = [unzip];
buildCommand = ''
ensureDir $out
unzip $src -d $out
'';
meta = {
homepage = http://chatzilla.hacksrus.com/;
description = "Stand-alone version of Chatzilla, an IRC client";
};
}