nixpkgs/pkgs/applications/networking/browsers/mozilla/default.nix
Armijn Hemel 3430d3d8a3 add the mozilla browser. The compilation process is nearly identical
to firefox, but there are some differences:
- don't source in $topsrcdir/browser/config/mozconfig (does not exist
it seems)
- different source tarball (different version that is)
- leave out the postinstall phase

svn path=/nixpkgs/trunk/; revision=4116
2005-10-22 11:51:30 +00:00

19 lines
480 B
Nix

{stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi}:
# !!! assert libIDL.glib == gtk.glib;
stdenv.mkDerivation {
name = "mozilla-1.7.12";
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla1.7.12/source/mozilla-1.7.12-source.tar.bz2;
md5 = "f1ad6adbbc0510eb76d352c94c801fac";
};
buildInputs = [pkgconfig gtk perl zip libIDL libXi];
inherit gtk;
#patches = [./writable-copies.patch];
}