summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/chatzilla/default.nix
blob: 768e19842c18e632215230b9f66eee0f400ae042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, unzip}:

stdenv.mkDerivation {
  name = "chatzilla-0.9.74";
  builder = ./builder.sh;
  src = fetchurl {
    # Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
    url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.74-xr.zip;
    md5 = "a1eada15b172eab6a771afa5f8670f7a";
  };

  buildInputs = [unzip];

  meta = {
    description = "Stand-alone version of Chatzilla, an IRC client";
  };
}