mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 21:42:35 +03:00
6006d61835
svn path=/nixpkgs/trunk/; revision=6705
18 lines
433 B
Nix
18 lines
433 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://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";
|
|
};
|
|
}
|