summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-17 14:00:54 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-17 14:00:54 +0000
commit8bccec9c3dd3b3729cec21f4bc6c083b10646830 (patch)
tree30dd92b91947899b533f9c804bb63e354dbfec5a /pkgs/applications
parent12dc491db51d45d68e4f78c747e11df960357bde (diff)
downloadnixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar.gz
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar.bz2
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar.lz
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar.xz
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.tar.zst
nixlib-8bccec9c3dd3b3729cec21f4bc6c083b10646830.zip
* --enable-canvas, and pass through gtk.
svn path=/nixpkgs/trunk/; revision=6541
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/firefox/default.nix3
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix3
2 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index 5ce5acde83fe..2e164c08052b 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -31,6 +31,7 @@ stdenv.mkDerivation {
     "--enable-xft"
     "--disable-freetype2"
     "--enable-svg"
+    "--enable-canvas"
     "--enable-strip"
     "--enable-default-toolkit=gtk2"
     "--with-system-jpeg"
@@ -43,4 +44,6 @@ stdenv.mkDerivation {
   meta = {
     description = "Mozilla Firefox - the browser, reloaded";
   };
+
+  passthru = {inherit gtk;};
 }
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index acccca4d7cf6..d0960a45211d 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -2,7 +2,7 @@
 , libjpeg, libpng, zlib, cairo
 
 , # If you want the resulting program to call itself "Thunderbird"
-  # instead of "Deer Park", enable this option.  However, those
+  # instead of "Mail", enable this option.  However, those
   # binaries may not be distributed without permission from the
   # Mozilla Foundation, see
   # http://www.mozilla.org/foundation/trademarks/.
@@ -32,6 +32,7 @@ stdenv.mkDerivation {
     "--enable-xft"
     "--disable-freetype2"
     "--enable-svg"
+    "--enable-canvas"
     "--enable-strip"
     "--enable-default-toolkit=gtk2"
     "--with-system-jpeg"