about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-06-08 16:45:52 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-06-08 17:09:12 +0200
commitd88aa14c6e4563c3244ec89805abe7360246f623 (patch)
treebbeb48094f02698702375f0c21784a225e6710f6
parent8fc6ca75a93671b9bb3ccfbb5cd9a68a48754064 (diff)
downloadnixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar.gz
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar.bz2
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar.lz
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar.xz
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.tar.zst
nixlib-d88aa14c6e4563c3244ec89805abe7360246f623.zip
Firefox: 46.0.1 -> 47.0
-rw-r--r--pkgs/applications/networking/browsers/firefox/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index a122f067722c..c3afa9dc95f7 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -4,6 +4,7 @@
 , yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
 , hunspell, libevent, libstartup_notification, libvpx
 , cairo, gstreamer, gst_plugins_base, icu, libpng, jemalloc, libpulseaudio
+, autoconf213, which
 , enableGTK3 ? false
 , debugBuild ? false
 , # If you want the resulting program to call itself "Firefox" instead
@@ -42,6 +43,8 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec {
     ++ lib.optional enableGTK3 gtk3
     ++ lib.optionals (!passthru.ffmpegSupport) [ gstreamer gst_plugins_base ];
 
+  nativeBuildInputs = [autoconf213 which];
+
   configureFlags =
     [ "--enable-application=browser"
       "--disable-javaxpcom"
@@ -132,8 +135,8 @@ in {
 
   firefox-unwrapped = common {
     pname = "firefox";
-    version = "46.0.1";
-    sha512 = "c58642774f93ceaef4f99bc3fe578db6e4f6de7f1d23080da97b61bc4fc6b516ce99fa04368893c0fa2cb9cd0b36e96955656daa97d0bd0d8f4da6a2d364cb98";
+    version = "47.0";
+    sha512 = "35275e5595e7f01a232e5ea6d7899857d0a1d7eab640fe614ef66c865abedae3e08bc6c0cde13165d53140ccf6f721bbcd583d091032e119d44884287393c223";
   };
 
   firefox-esr-unwrapped = common {