about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2020-01-08 23:14:50 +0100
committerAndreas Rammhold <andreas@rammhold.de>2020-01-08 23:39:26 +0100
commitb4983fe20be4bd1ec1341a198e02ee111f0e6393 (patch)
tree1c8dab3b048d8f1299f33f18226132442eb85d86 /pkgs/applications/networking/browsers
parent204d32a746f70cb8be163a98e0d6ec7f2c8b9ee4 (diff)
downloadnixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar.gz
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar.bz2
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar.lz
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar.xz
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.tar.zst
nixlib-b4983fe20be4bd1ec1341a198e02ee111f0e6393.zip
firefox: fix build of >=72 on aarch64
Diffstat (limited to 'pkgs/applications/networking/browsers')
-rw-r--r--pkgs/applications/networking/browsers/firefox/common.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/common.nix b/pkgs/applications/networking/browsers/firefox/common.nix
index 1896f9d690e0..740d05ba0468 100644
--- a/pkgs/applications/networking/browsers/firefox/common.nix
+++ b/pkgs/applications/networking/browsers/firefox/common.nix
@@ -373,5 +373,12 @@ stdenv.mkDerivation (rec {
 # unfortunately we can't just set this to `false` when we do not want it.
 # See https://github.com/NixOS/nixpkgs/issues/77289 for more details
 lib.optionalAttrs (lib.versionAtLeast ffversion "72") {
+  # Ideally we would figure out how to tell the build system to not
+  # care about changed hashes as we are already doing that when we
+  # fetch the sources. Any further modifications of the source tree
+  # is on purpose by some of our tool (or by accident and a bug?).
   dontFixLibtool = true;
+
+  # on aarch64 this is also required
+  dontUpdateAutotoolsGnuConfigScripts = true;
 })