nixpkgs/pkgs/applications/networking/browsers/firefox/default.nix
Eelco Dolstra ee672a7456 * Use browser/config/mozconfig to get a more "standard" Firefox
build.  The find bar now works properly (don't know why).
* Delete developer stuff (header files) after installation.

svn path=/nixpkgs/trunk/; revision=1463
2004-09-19 14:13:24 +00:00

19 lines
500 B
Nix

{stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi}:
assert pkgconfig != null && gtk != null && perl != null
&& zip != null && libIDL != null;
# !!! assert libIDL.glib == gtk.glib;
stdenv.mkDerivation {
name = "firefox-1.0pre-PR";
builder = ./builder.sh;
src = fetchurl {
url = http://www.artfiles.org/mozilla.org/firefox/releases/0.10/firefox-1.0PR-source.tar.bz2;
md5 = "b81ebc5f01448313add23ed44c47cf5e";
};
buildInputs = [pkgconfig gtk perl zip libIDL libXi];
}