78c1eb55df
svn path=/nixpkgs/trunk/; revision=3801
17 lines
477 B
Nix
17 lines
477 B
Nix
{stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi}:
|
|
|
|
# !!! assert libIDL.glib == gtk.glib;
|
|
|
|
(stdenv.mkDerivation {
|
|
name = "firefox-1.5beta1";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/1.5b1/source/firefox-1.5b1-source.tar.bz2;
|
|
md5 = "a1b2549a31c74e7366213bb2ba76876f";
|
|
};
|
|
|
|
buildInputs = [pkgconfig gtk perl zip libIDL libXi];
|
|
|
|
patches = [./writable-copies.patch];
|
|
}) // {inherit gtk;}
|