* Chatzilla 0.9.85 (on the Xulrunner from Firefox 3.5).

svn path=/nixpkgs/trunk/; revision=16248
This commit is contained in:
Eelco Dolstra 2009-07-08 13:19:44 +00:00
parent fb9eddb70b
commit 9f451704dd
2 changed files with 4 additions and 7 deletions

View File

@ -1,12 +1,12 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "chatzilla-0.9.84";
name = "chatzilla-0.9.85";
src = fetchurl {
# Obtained from http://chatzilla.rdmsoft.com/xulrunner/.
url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.84-xr.zip;
sha256 = "0v1xakdgjjwwh0azxbh7y9yi99gcn0d37sfxrdzw78lbag3fh0k8";
url = http://chatzilla.rdmsoft.com/xulrunner/download/chatzilla-0.9.85-xr.zip;
sha256 = "0jd7mq05715vad82sl4ycr7ga587k53dijxz371y3zwpf8479hqx";
};
buildInputs = [unzip];
@ -14,9 +14,6 @@ stdenv.mkDerivation {
buildCommand = ''
ensureDir $out
unzip $src -d $out
# Fix overly restrictive version specification.
substituteInPlace $out/application.ini --replace 'MaxVersion=1.9' 'MaxVersion=1.9.0.999'
'';
meta = {

View File

@ -2382,7 +2382,7 @@ let
xulrunnerWrapper = {application, launcher}:
import ../development/interpreters/xulrunner/wrapper {
inherit stdenv application launcher;
xulrunner = xulrunner3;
xulrunner = xulrunner35;
};