summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/firefox/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-02-10 18:32:42 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-02-10 18:32:42 +0000
commit73049cea22e00786e949eb3e4c95659715935fa9 (patch)
tree85e71a635f349bb52a231767ce41132ca27674da /pkgs/applications/networking/browsers/firefox/default.nix
parentecbf66674f1a2545d0adb368dbb47bad874d34b6 (diff)
downloadnixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar.gz
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar.bz2
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar.lz
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar.xz
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.tar.zst
nixlib-73049cea22e00786e949eb3e4c95659715935fa9.zip
* Ugh.
svn path=/nixpkgs/trunk/; revision=774
Diffstat (limited to 'pkgs/applications/networking/browsers/firefox/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/firefox/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
new file mode 100644
index 000000000000..9c7a434c63b4
--- /dev/null
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL
+}:
+
+assert !isNull pkgconfig && !isNull gtk && !isNull perl
+  && !isNull zip && !isNull libIDL;
+
+assert libIDL.glib == gtk.glib;
+
+derivation {
+  name = "firefox-0.8";
+  system = stdenv.system;
+
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/0.8/firefox-source-0.8.tar.bz2;
+    md5 = "cdc85152f4219bf3e3f1a8dc46e04654";
+  };
+
+  stdenv = stdenv;
+  pkgconfig = pkgconfig;
+  gtk = gtk;
+  perl = perl;
+  zip = zip;
+  libIDL = libIDL;
+}