23545f821a
svn path=/nixpkgs/trunk/; revision=13690
97 lines
2.5 KiB
Nix
97 lines
2.5 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gtk, pango, perl, python, zip, libIDL
|
|
, libjpeg, libpng, zlib, cairo, dbus, dbus_glib, bzip2, xlibs
|
|
, freetype, fontconfig, file, alsaLib, autoconf
|
|
|
|
, # 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
|
|
}:
|
|
|
|
let
|
|
|
|
version = "1.9.1b2"; # this attribute is used by other packages
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xulrunner-${version}";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.mozilla.org/pub/firefox/releases/3.1b2/source/firefox-3.1b2-source.tar.bz2;
|
|
sha256 = "1mqy7q4bfw8iphlmzvymqfki8r4zzynyyy6z6gws4qqx9ry42jqs";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig gtk perl zip libIDL libjpeg libpng zlib cairo bzip2
|
|
python dbus dbus_glib pango freetype fontconfig
|
|
xlibs.libXi xlibs.libX11 xlibs.libXrender xlibs.libXft xlibs.libXt
|
|
file alsaLib autoconf
|
|
];
|
|
|
|
preConfigure = ''
|
|
export PREFIX=$out
|
|
export LIBXUL_DIST=$out
|
|
autoconf
|
|
cd js/src
|
|
autoconf
|
|
cd ../..
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-application=xulrunner"
|
|
"--disable-javaxpcom"
|
|
"--enable-optimize"
|
|
"--disable-debug"
|
|
"--enable-strip"
|
|
"--with-system-jpeg"
|
|
"--with-system-zlib"
|
|
"--with-system-bz2"
|
|
# "--with-system-png" # <-- "--with-system-png won't work because the system's libpng doesn't have APNG support"
|
|
"--enable-system-cairo"
|
|
#"--enable-system-sqlite" # <-- this seems to be discouraged
|
|
"--disable-crashreporter"
|
|
];
|
|
|
|
installFlags = [
|
|
"SKIP_GRE_REGISTRATION=1"
|
|
];
|
|
|
|
postInstall = ''
|
|
export dontPatchELF=1;
|
|
|
|
# Strip some more stuff
|
|
strip -S $out/lib/*/* || true
|
|
|
|
# Fix some references to /bin paths in the Firefox shell script.
|
|
substituteInPlace $out/bin/xulrunner \
|
|
--replace /bin/pwd "$(type -tP pwd)" \
|
|
--replace /bin/ls "$(type -tP ls)"
|
|
|
|
# Fix run-mozilla.sh search
|
|
libDir=$(cd $out/lib && ls -d xulrunner-[0-9]*)
|
|
echo libDir: $libDir
|
|
test -n "$libDir"
|
|
cd $out/bin
|
|
mv xulrunner ../lib/$libDir/
|
|
|
|
for i in $out/lib/$libDir/*; do
|
|
file $i;
|
|
if file $i | grep executable &>/dev/null; then
|
|
ln -s $i $out/bin
|
|
fi;
|
|
done;
|
|
rm $out/bin/run-mozilla.sh || true
|
|
''; # */
|
|
|
|
meta = {
|
|
description = "Mozilla Firefox XUL runner";
|
|
homepage = http://www.mozilla.com/en-US/firefox/;
|
|
};
|
|
|
|
passthru = { inherit gtk version; };
|
|
}
|
|
|
|
|