d4578254b0
svn path=/nixpkgs/trunk/; revision=6817
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi
|
|
, libjpeg, libpng, zlib, cairo
|
|
|
|
, # If you want the resulting program to call itself "Firefox" instead
|
|
# of "Deer Park", enable this option. However, those binaries may
|
|
# not be distributed without permission from the Mozilla Foundation,
|
|
# see http://www.mozilla.org/foundation/trademarks/.
|
|
enableOfficialBranding ? false
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "firefox-2.0";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0/source/firefox-2.0-source.tar.bz2;
|
|
sha1 = "2bbc6b80cf184bf27101ec4315a19023547c85d4";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig gtk perl zip libIDL libXi libjpeg libpng zlib cairo
|
|
];
|
|
|
|
patches = [./writable-copies.patch];
|
|
|
|
configureFlags = [
|
|
"--enable-application=browser"
|
|
"--enable-optimize"
|
|
"--disable-debug"
|
|
"--enable-xft"
|
|
"--disable-freetype2"
|
|
"--enable-svg"
|
|
"--enable-canvas"
|
|
"--enable-strip"
|
|
"--enable-default-toolkit=gtk2"
|
|
"--with-system-jpeg"
|
|
"--with-system-png"
|
|
"--with-system-zlib"
|
|
"--enable-system-cairo"
|
|
]
|
|
++ (if enableOfficialBranding then ["--enable-official-branding"] else []);
|
|
|
|
meta = {
|
|
description = "Mozilla Firefox - the browser, reloaded";
|
|
};
|
|
|
|
passthru = {inherit gtk;};
|
|
}
|