2010-07-22 14:59:12 +02:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2006-02-15 03:53:01 +01:00
|
|
|
|
2010-07-22 14:59:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "chatzilla-0.9.86";
|
2007-09-26 20:46:43 +02:00
|
|
|
|
2006-02-15 03:53:01 +01:00
|
|
|
src = fetchurl {
|
2006-07-19 16:10:03 +02:00
|
|
|
# Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
|
2010-07-22 14:59:12 +02:00
|
|
|
url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.86-xr.zip;
|
|
|
|
sha256 = "1z8767arx2ncch0pzkdzhisjgmd45qianahz3xr8isvahv2klj5x";
|
2006-02-15 03:53:01 +01:00
|
|
|
};
|
|
|
|
|
2010-07-22 14:59:12 +02:00
|
|
|
buildInputs = [ unzip ];
|
2006-10-11 18:45:55 +02:00
|
|
|
|
2008-09-04 11:29:09 +02:00
|
|
|
buildCommand = ''
|
|
|
|
ensureDir $out
|
|
|
|
unzip $src -d $out
|
|
|
|
'';
|
|
|
|
|
2006-10-11 18:45:55 +02:00
|
|
|
meta = {
|
2007-09-26 20:46:43 +02:00
|
|
|
homepage = http://chatzilla.hacksrus.com/;
|
2006-10-11 18:45:55 +02:00
|
|
|
description = "Stand-alone version of Chatzilla, an IRC client";
|
|
|
|
};
|
2006-02-15 03:53:01 +01:00
|
|
|
}
|