2018-10-01 01:00:00 +01:00
|
|
|
{ pname, ffversion, meta, updateScript ? null
|
|
|
|
, src, unpackPhase ? null, patches ? []
|
2020-02-01 17:56:13 +00:00
|
|
|
, extraNativeBuildInputs ? [], extraConfigureFlags ? [], extraMakeFlags ? [] }:
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2020-06-20 22:33:39 +01:00
|
|
|
{ lib, stdenv, pkgconfig, pango, perl, python2, python3, zip
|
2018-02-25 02:23:58 +00:00
|
|
|
, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
|
2017-03-27 13:33:00 +01:00
|
|
|
, freetype, fontconfig, file, nspr, nss, libnotify
|
2019-11-10 16:44:34 +00:00
|
|
|
, yasm, libGLU, libGL, sqlite, unzip, makeWrapper
|
2020-04-06 16:34:05 +01:00
|
|
|
, hunspell, libXdamage, libevent, libstartup_notification
|
|
|
|
, libvpx, libvpx_1_8
|
2020-07-01 14:54:25 +01:00
|
|
|
, icu, icu67, libpng, jemalloc, glib
|
2017-09-28 01:13:15 +01:00
|
|
|
, autoconf213, which, gnused, cargo, rustc, llvmPackages
|
2019-04-06 15:52:35 +01:00
|
|
|
, rust-cbindgen, nodejs, nasm, fetchpatch
|
2013-10-06 05:07:42 +01:00
|
|
|
, debugBuild ? false
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
### optionals
|
|
|
|
|
2017-03-27 13:35:34 +01:00
|
|
|
## optional libraries
|
|
|
|
|
2018-07-10 23:10:04 +01:00
|
|
|
, alsaSupport ? stdenv.isLinux, alsaLib
|
2018-11-07 09:07:40 +00:00
|
|
|
, pulseaudioSupport ? stdenv.isLinux, libpulseaudio
|
2018-11-14 22:29:48 +00:00
|
|
|
, ffmpegSupport ? true
|
2018-10-01 01:00:00 +01:00
|
|
|
, gtk3Support ? true, gtk2, gtk3, wrapGAppsHook
|
2019-02-03 10:34:39 +00:00
|
|
|
, waylandSupport ? true, libxkbcommon
|
2017-09-27 14:30:29 +01:00
|
|
|
, gssSupport ? true, kerberos
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2017-03-27 13:35:34 +01:00
|
|
|
## privacy-related options
|
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
, privacySupport ? false
|
2017-03-27 13:35:34 +01:00
|
|
|
|
|
|
|
# WARNING: NEVER set any of the options below to `true` by default.
|
2019-04-06 15:49:14 +01:00
|
|
|
# Set to `!privacySupport` or `false`.
|
2017-03-27 13:35:34 +01:00
|
|
|
|
2019-04-06 15:49:14 +01:00
|
|
|
# webrtcSupport breaks the aarch64 build on version >= 60, fixed in 63.
|
2018-05-13 18:19:55 +01:00
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1434589
|
2020-02-01 17:56:13 +00:00
|
|
|
, webrtcSupport ? !privacySupport
|
2017-11-15 00:00:00 +00:00
|
|
|
, geolocationSupport ? !privacySupport
|
|
|
|
, googleAPISupport ? geolocationSupport
|
2017-03-27 13:33:00 +01:00
|
|
|
, crashreporterSupport ? false
|
|
|
|
|
2017-11-15 00:00:00 +00:00
|
|
|
, safeBrowsingSupport ? false
|
2017-03-27 13:33:00 +01:00
|
|
|
, drmSupport ? false
|
|
|
|
|
2018-07-10 23:10:04 +01:00
|
|
|
# macOS dependencies
|
2018-07-11 22:01:35 +01:00
|
|
|
, xcbuild, CoreMedia, ExceptionHandling, Kerberos, AVFoundation, MediaToolbox
|
2018-07-29 05:15:14 +01:00
|
|
|
, CoreLocation, Foundation, AddressBook, libobjc, cups, rsync
|
2018-07-10 23:10:04 +01:00
|
|
|
|
2017-03-27 13:35:34 +01:00
|
|
|
## other
|
|
|
|
|
2018-01-31 16:50:10 +00:00
|
|
|
# As stated by Sylvestre Ledru (@sylvestre) on Nov 22, 2017 at
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/31843#issuecomment-346372756 we
|
|
|
|
# have permission to use the official firefox branding.
|
|
|
|
#
|
|
|
|
# Fur purposes of documentation the statement of @sylvestre:
|
|
|
|
# > As the person who did part of the work described in the LWN article
|
|
|
|
# > and release manager working for Mozilla, I can confirm the statement
|
|
|
|
# > that I made in
|
|
|
|
# > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815006
|
|
|
|
# >
|
|
|
|
# > @garbas shared with me the list of patches applied for the Nix package.
|
|
|
|
# > As they are just for portability and tiny modifications, they don't
|
|
|
|
# > alter the experience of the product. In parallel, Rok also shared the
|
|
|
|
# > build options. They seem good (even if I cannot judge the quality of the
|
|
|
|
# > packaging of the underlying dependencies like sqlite, png, etc).
|
|
|
|
# > Therefor, as long as you keep the patch queue sane and you don't alter
|
|
|
|
# > the experience of Firefox users, you won't have any issues using the
|
|
|
|
# > official branding.
|
|
|
|
, enableOfficialBranding ? true
|
2013-06-06 12:07:54 +01:00
|
|
|
}:
|
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
assert stdenv.cc.libc or null != null;
|
2013-06-06 12:07:54 +01:00
|
|
|
|
2015-09-03 09:54:13 +01:00
|
|
|
let
|
2017-03-27 13:33:00 +01:00
|
|
|
flag = tf: x: [(if tf then "--enable-${x}" else "--disable-${x}")];
|
2018-07-10 23:10:04 +01:00
|
|
|
|
|
|
|
default-toolkit = if stdenv.isDarwin then "cairo-cocoa"
|
2019-02-03 10:34:39 +00:00
|
|
|
else "cairo-gtk${if gtk3Support then "3${lib.optionalString waylandSupport "-wayland"}" else "2"}";
|
2018-07-29 05:15:14 +01:00
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
binaryName = "firefox";
|
2019-01-01 00:00:00 +00:00
|
|
|
binaryNameCapitalized = lib.toUpper (lib.substring 0 1 binaryName) + lib.substring 1 (-1) binaryName;
|
|
|
|
|
|
|
|
browserName = if stdenv.isDarwin then binaryNameCapitalized else binaryName;
|
|
|
|
|
2018-07-29 05:15:14 +01:00
|
|
|
execdir = if stdenv.isDarwin
|
2019-01-01 00:00:00 +00:00
|
|
|
then "/Applications/${binaryNameCapitalized}.app/Contents/MacOS"
|
2018-07-29 05:15:14 +01:00
|
|
|
else "/bin";
|
2020-02-01 17:56:13 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
|
|
|
name = "${pname}-unwrapped-${ffversion}";
|
|
|
|
version = ffversion;
|
2019-01-01 00:00:00 +00:00
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
inherit src unpackPhase meta;
|
2019-01-31 16:38:01 +00:00
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
patches = [
|
2019-01-31 16:38:01 +00:00
|
|
|
./env_var_for_system_dir.patch
|
2020-01-07 17:40:56 +00:00
|
|
|
]
|
2019-12-07 18:22:10 +00:00
|
|
|
++ patches;
|
2019-01-31 16:38:01 +00:00
|
|
|
|
2017-03-27 13:33:00 +01:00
|
|
|
|
2019-01-23 00:04:04 +00:00
|
|
|
# Ignore trivial whitespace changes in patches, this fixes compatibility of
|
|
|
|
# ./env_var_for_system_dir.patch with Firefox >=65 without having to track
|
|
|
|
# two patches.
|
|
|
|
patchFlags = [ "-p1" "-l" ];
|
|
|
|
|
2017-03-27 13:33:00 +01:00
|
|
|
buildInputs = [
|
2020-06-20 22:33:39 +01:00
|
|
|
gtk2 perl zip libjpeg zlib bzip2
|
2018-07-12 14:05:52 +01:00
|
|
|
dbus dbus-glib pango freetype fontconfig xorg.libXi xorg.libXcursor
|
2017-03-27 13:33:00 +01:00
|
|
|
xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
|
2019-11-10 16:44:34 +00:00
|
|
|
libnotify xorg.pixman yasm libGLU libGL
|
2018-12-31 03:40:47 +00:00
|
|
|
xorg.libXScrnSaver xorg.xorgproto
|
2020-04-06 16:34:05 +01:00
|
|
|
xorg.libXext unzip makeWrapper
|
|
|
|
libevent libstartup_notification /* cairo */
|
2020-07-01 14:54:25 +01:00
|
|
|
libpng jemalloc glib
|
2020-02-01 17:56:13 +00:00
|
|
|
nasm
|
|
|
|
# >= 66 requires nasm for the AV1 lib dav1d
|
|
|
|
# yasm can potentially be removed in future versions
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1501796
|
|
|
|
# https://groups.google.com/forum/#!msg/mozilla.dev.platform/o-8levmLU80/SM_zQvfzCQAJ
|
|
|
|
nspr nss
|
2017-03-27 13:33:00 +01:00
|
|
|
]
|
2020-07-01 14:54:25 +01:00
|
|
|
++ lib.optionals (lib.versionOlder ffversion "75") [ libvpx sqlite ]
|
2020-04-06 16:34:05 +01:00
|
|
|
++ lib.optional (lib.versionAtLeast ffversion "75.0") libvpx_1_8
|
2020-07-01 14:54:25 +01:00
|
|
|
++ lib.optional (lib.versionOlder ffversion "78") icu
|
|
|
|
++ lib.optional (lib.versionAtLeast ffversion "78.0") icu67
|
2017-03-27 13:33:00 +01:00
|
|
|
++ lib.optional alsaSupport alsaLib
|
|
|
|
++ lib.optional pulseaudioSupport libpulseaudio # only headers are needed
|
2017-09-27 14:30:29 +01:00
|
|
|
++ lib.optional gtk3Support gtk3
|
2018-07-10 23:10:04 +01:00
|
|
|
++ lib.optional gssSupport kerberos
|
2019-02-03 10:34:39 +00:00
|
|
|
++ lib.optional waylandSupport libxkbcommon
|
2018-07-11 22:01:35 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreMedia ExceptionHandling Kerberos
|
|
|
|
AVFoundation MediaToolbox CoreLocation
|
2018-07-29 05:15:14 +01:00
|
|
|
Foundation libobjc AddressBook cups ];
|
2018-07-11 22:01:35 +01:00
|
|
|
|
2019-10-30 00:40:49 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString ([
|
2018-10-01 01:00:00 +01:00
|
|
|
"-I${glib.dev}/include/gio-unix-2.0"
|
|
|
|
"-I${nss.dev}/include/nss"
|
2019-11-03 12:10:28 +00:00
|
|
|
]
|
2020-02-01 17:56:13 +00:00
|
|
|
++ lib.optional (pname == "firefox-esr" && lib.versionOlder ffversion "69")
|
2019-10-30 00:40:49 +00:00
|
|
|
"-Wno-error=format-security");
|
2018-07-11 22:01:35 +01:00
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
postPatch = ''
|
2019-07-14 06:54:14 +01:00
|
|
|
rm -rf obj-x86_64-pc-linux-gnu
|
2018-07-11 22:01:35 +01:00
|
|
|
'';
|
2017-09-28 01:13:15 +01:00
|
|
|
|
2017-04-23 03:50:33 +01:00
|
|
|
nativeBuildInputs =
|
2020-02-01 17:56:13 +00:00
|
|
|
[
|
|
|
|
autoconf213
|
|
|
|
cargo
|
|
|
|
gnused
|
|
|
|
llvmPackages.llvm # llvm-objdump
|
|
|
|
nodejs
|
|
|
|
perl
|
|
|
|
pkgconfig
|
|
|
|
python2
|
|
|
|
python3
|
|
|
|
rust-cbindgen
|
|
|
|
rustc
|
|
|
|
which
|
|
|
|
]
|
2018-07-10 23:10:04 +01:00
|
|
|
++ lib.optional gtk3Support wrapGAppsHook
|
2018-07-29 05:15:14 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ xcbuild rsync ]
|
2018-07-10 23:10:04 +01:00
|
|
|
++ extraNativeBuildInputs;
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# remove distributed configuration files
|
|
|
|
rm -f configure
|
|
|
|
rm -f js/src/configure
|
|
|
|
rm -f .mozconfig*
|
2020-02-01 17:56:13 +00:00
|
|
|
# this will run autoconf213
|
2018-02-01 00:00:00 +00:00
|
|
|
configureScript="$(realpath ./mach) configure"
|
2018-07-11 22:01:35 +01:00
|
|
|
export MOZCONFIG=$(pwd)/mozconfig
|
|
|
|
|
|
|
|
# Set C flags for Rust's bindgen program. Unlike ordinary C
|
|
|
|
# compilation, bindgen does not invoke $CC directly. Instead it
|
|
|
|
# uses LLVM's libclang. To make sure all necessary flags are
|
|
|
|
# included we need to look in a few places.
|
|
|
|
# TODO: generalize this process for other use-cases.
|
2018-07-29 05:15:14 +01:00
|
|
|
|
|
|
|
BINDGEN_CFLAGS="$(< ${stdenv.cc}/nix-support/libc-cflags) \
|
|
|
|
$(< ${stdenv.cc}/nix-support/cc-cflags) \
|
2020-04-14 01:44:43 +01:00
|
|
|
$(< ${stdenv.cc}/nix-support/libcxx-cxxflags) \
|
2018-07-29 05:15:14 +01:00
|
|
|
${lib.optionalString stdenv.cc.isClang "-idirafter ${stdenv.cc.cc}/lib/clang/${lib.getVersion stdenv.cc.cc}/include"} \
|
2020-04-14 00:19:05 +01:00
|
|
|
${lib.optionalString stdenv.cc.isGNU "-isystem ${stdenv.cc.cc}/include/c++/${lib.getVersion stdenv.cc.cc} -isystem ${stdenv.cc.cc}/include/c++/${lib.getVersion stdenv.cc.cc}/${stdenv.hostPlatform.config}"} \
|
2018-07-29 05:15:14 +01:00
|
|
|
$NIX_CFLAGS_COMPILE"
|
|
|
|
|
|
|
|
echo "ac_add_options BINDGEN_CFLAGS='$BINDGEN_CFLAGS'" >> $MOZCONFIG
|
2020-02-01 17:56:13 +00:00
|
|
|
'' + (lib.optionalString googleAPISupport ''
|
2018-01-31 00:52:10 +00:00
|
|
|
# Google API key used by Chromium and Firefox.
|
|
|
|
# Note: These are for NixOS/nixpkgs use ONLY. For your own distribution,
|
|
|
|
# please get your own set of keys.
|
|
|
|
echo "AIzaSyDGi15Zwl11UNe6Y-5XW_upsfyw31qwZPI" > $TMPDIR/ga
|
2019-03-01 08:22:32 +00:00
|
|
|
# 60.5+ & 66+ did split the google API key arguments: https://bugzilla.mozilla.org/show_bug.cgi?id=1531176
|
2020-02-01 17:56:13 +00:00
|
|
|
configureFlagsArray+=("--with-google-location-service-api-keyfile=$TMPDIR/ga")
|
|
|
|
configureFlagsArray+=("--with-google-safebrowsing-api-keyfile=$TMPDIR/ga")
|
|
|
|
'') + ''
|
|
|
|
# AS=as in the environment causes build failure https://bugzilla.mozilla.org/show_bug.cgi?id=1497286
|
2018-12-11 09:37:55 +00:00
|
|
|
unset AS
|
2017-03-27 13:33:00 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-application=browser"
|
|
|
|
"--with-system-jpeg"
|
|
|
|
"--with-system-zlib"
|
|
|
|
"--with-system-libevent"
|
|
|
|
"--with-system-libvpx"
|
|
|
|
"--with-system-png" # needs APNG support
|
|
|
|
"--with-system-icu"
|
|
|
|
"--enable-system-ffi"
|
|
|
|
"--enable-system-pixman"
|
|
|
|
#"--enable-system-cairo"
|
|
|
|
"--disable-tests"
|
|
|
|
"--disable-necko-wifi" # maybe we want to enable this at some point
|
|
|
|
"--disable-updater"
|
|
|
|
"--enable-jemalloc"
|
2018-07-10 23:10:04 +01:00
|
|
|
"--enable-default-toolkit=${default-toolkit}"
|
2018-01-16 21:19:02 +00:00
|
|
|
"--with-libclang-path=${llvmPackages.libclang}/lib"
|
2017-09-28 01:13:15 +01:00
|
|
|
"--with-clang-path=${llvmPackages.clang}/bin/clang"
|
2017-04-01 01:00:00 +01:00
|
|
|
"--with-system-nspr"
|
2018-10-01 01:00:00 +01:00
|
|
|
"--with-system-nss"
|
2017-04-01 01:00:00 +01:00
|
|
|
]
|
2020-07-01 14:54:25 +01:00
|
|
|
++ lib.optionals (lib.versionOlder ffversion "78") [
|
|
|
|
"--with-system-bz2"
|
|
|
|
"--enable-startup-notification"
|
|
|
|
"--disable-gconf"
|
|
|
|
]
|
2020-04-06 16:34:05 +01:00
|
|
|
++ lib.optional (lib.versionOlder ffversion "75") "--enable-system-sqlite"
|
2020-02-01 17:56:13 +00:00
|
|
|
++ lib.optional (stdenv.isDarwin) "--disable-xcode-checks"
|
|
|
|
++ lib.optionals (lib.versionOlder ffversion "69") [
|
|
|
|
"--enable-webrender=build"
|
|
|
|
]
|
2017-04-01 01:00:00 +01:00
|
|
|
|
2017-03-27 13:33:00 +01:00
|
|
|
++ flag alsaSupport "alsa"
|
|
|
|
++ flag pulseaudioSupport "pulseaudio"
|
|
|
|
++ flag ffmpegSupport "ffmpeg"
|
2017-09-27 14:30:29 +01:00
|
|
|
++ flag gssSupport "negotiateauth"
|
2017-03-27 13:33:00 +01:00
|
|
|
++ flag webrtcSupport "webrtc"
|
|
|
|
++ flag crashreporterSupport "crashreporter"
|
2017-07-01 04:06:51 +01:00
|
|
|
++ lib.optional drmSupport "--enable-eme=widevine"
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ]
|
|
|
|
else [ "--disable-debug" "--enable-release"
|
|
|
|
"--enable-optimize"
|
|
|
|
"--enable-strip" ])
|
2017-08-15 01:00:00 +01:00
|
|
|
++ lib.optional enableOfficialBranding "--enable-official-branding"
|
|
|
|
++ extraConfigureFlags;
|
2014-07-23 14:31:49 +01:00
|
|
|
|
2020-02-01 17:56:13 +00:00
|
|
|
postConfigure = ''
|
2018-02-01 00:00:00 +00:00
|
|
|
cd obj-*
|
|
|
|
'';
|
|
|
|
|
2017-08-15 01:00:00 +01:00
|
|
|
makeFlags = lib.optionals enableOfficialBranding [
|
|
|
|
"MOZILLA_OFFICIAL=1"
|
|
|
|
"BUILD_OFFICIAL=1"
|
|
|
|
]
|
|
|
|
++ extraMakeFlags;
|
|
|
|
|
2014-07-23 14:31:49 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # "--disable-tests" above
|
2014-07-23 14:31:49 +01:00
|
|
|
|
2018-07-29 05:15:14 +01:00
|
|
|
installPhase = if stdenv.isDarwin then ''
|
|
|
|
mkdir -p $out/Applications
|
2019-01-01 00:00:00 +00:00
|
|
|
cp -LR dist/${binaryNameCapitalized}.app $out/Applications
|
2018-07-29 05:15:14 +01:00
|
|
|
'' else null;
|
|
|
|
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2017-03-27 13:33:00 +01:00
|
|
|
# Remove SDK cruft. FIXME: move to a separate output?
|
2019-01-01 00:00:00 +00:00
|
|
|
rm -rf $out/share/idl $out/include $out/lib/${binaryName}-devel-*
|
2017-03-27 13:33:00 +01:00
|
|
|
|
|
|
|
# Needed to find Mozilla runtime
|
2019-01-01 00:00:00 +00:00
|
|
|
gappsWrapperArgs+=(--argv0 "$out/bin/.${binaryName}-wrapped")
|
2017-03-27 13:33:00 +01:00
|
|
|
'';
|
|
|
|
|
2018-07-29 05:15:14 +01:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2016-09-18 22:19:51 +01:00
|
|
|
# Fix notifications. LibXUL uses dlopen for this, unfortunately; see #18712.
|
2017-03-27 13:33:00 +01:00
|
|
|
patchelf --set-rpath "${lib.getLib libnotify
|
2019-01-01 00:00:00 +00:00
|
|
|
}/lib:$(patchelf --print-rpath "$out"/lib/${binaryName}*/libxul.so)" \
|
|
|
|
"$out"/lib/${binaryName}*/libxul.so
|
2017-03-27 13:33:00 +01:00
|
|
|
'';
|
2016-09-18 22:19:51 +01:00
|
|
|
|
2017-04-09 18:17:40 +01:00
|
|
|
doInstallCheck = true;
|
2017-03-27 13:33:00 +01:00
|
|
|
installCheckPhase = ''
|
|
|
|
# Some basic testing
|
2018-07-29 05:15:14 +01:00
|
|
|
"$out${execdir}/${browserName}" --version
|
2017-03-27 13:33:00 +01:00
|
|
|
'';
|
2013-06-06 12:07:54 +01:00
|
|
|
|
2014-07-23 14:31:49 +01:00
|
|
|
passthru = {
|
2020-02-01 17:56:13 +00:00
|
|
|
inherit updateScript;
|
|
|
|
version = ffversion;
|
2017-03-27 13:33:00 +01:00
|
|
|
isFirefox3Like = true;
|
|
|
|
gtk = gtk2;
|
|
|
|
inherit nspr;
|
|
|
|
inherit ffmpegSupport;
|
2017-09-27 14:30:29 +01:00
|
|
|
inherit gssSupport;
|
2018-07-29 05:15:14 +01:00
|
|
|
inherit execdir;
|
|
|
|
inherit browserName;
|
2017-05-04 21:09:15 +01:00
|
|
|
} // lib.optionalAttrs gtk3Support { inherit gtk3; };
|
2020-01-07 17:40:56 +00:00
|
|
|
} //
|
2020-03-12 13:47:56 +00:00
|
|
|
lib.optionalAttrs (lib.versionAtLeast ffversion "74") {
|
|
|
|
hardeningDisable = [ "format" ]; # -Werror=format-security
|
|
|
|
} //
|
2020-01-07 17:40:56 +00:00
|
|
|
# the build system verifies checksums of the bundled rust sources
|
|
|
|
# ./third_party/rust is be patched by our libtool fixup code in stdenv
|
|
|
|
# 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
|
2020-02-01 17:56:13 +00:00
|
|
|
|
2020-01-07 17:40:56 +00:00
|
|
|
lib.optionalAttrs (lib.versionAtLeast ffversion "72") {
|
2020-01-08 22:14:50 +00:00
|
|
|
# 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?).
|
2020-01-07 17:40:56 +00:00
|
|
|
dontFixLibtool = true;
|
2020-01-08 22:14:50 +00:00
|
|
|
|
|
|
|
# on aarch64 this is also required
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
2020-01-07 17:40:56 +00:00
|
|
|
})
|