Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
firefox: fix build of >=72 on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
andir committed Jan 8, 2020
1 parent 204d32a commit b4983fe
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/applications/networking/browsers/firefox/common.nix
Expand Up @@ -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;
})

0 comments on commit b4983fe

Please sign in to comment.