firefoxPackages: implement privacySupport option
This commit is contained in:
parent
f0f572ff46
commit
2f35ab5960
|
@ -13,19 +13,30 @@
|
||||||
|
|
||||||
### optionals
|
### optionals
|
||||||
|
|
||||||
|
## optional libraries
|
||||||
|
|
||||||
, alsaSupport ? true, alsaLib
|
, alsaSupport ? true, alsaLib
|
||||||
, pulseaudioSupport ? true, libpulseaudio
|
, pulseaudioSupport ? true, libpulseaudio
|
||||||
, ffmpegSupport ? true, gstreamer, gst-plugins-base
|
, ffmpegSupport ? true, gstreamer, gst-plugins-base
|
||||||
, gtk3Support ? true, gtk2, gtk3, wrapGAppsHook
|
, gtk3Support ? true, gtk2, gtk3, wrapGAppsHook
|
||||||
|
|
||||||
, webrtcSupport ? true
|
## privacy-related options
|
||||||
, geolocationSupport ? true
|
|
||||||
|
, privacySupport ? false
|
||||||
|
|
||||||
|
# WARNING: NEVER set any of the options below to `true` by default.
|
||||||
|
# Set to `privacySupport` or `false`.
|
||||||
|
|
||||||
|
, webrtcSupport ? !privacySupport
|
||||||
|
, geolocationSupport ? !privacySupport
|
||||||
, googleAPISupport ? geolocationSupport
|
, googleAPISupport ? geolocationSupport
|
||||||
, crashreporterSupport ? false
|
, crashreporterSupport ? false
|
||||||
|
|
||||||
, safeBrowsingSupport ? false
|
, safeBrowsingSupport ? false
|
||||||
, drmSupport ? false
|
, drmSupport ? false
|
||||||
|
|
||||||
|
## other
|
||||||
|
|
||||||
# If you want the resulting program to call itself "Firefox" instead
|
# If you want the resulting program to call itself "Firefox" instead
|
||||||
# of "Nightly" or whatever, enable this option. However, those
|
# of "Nightly" or whatever, enable this option. However, those
|
||||||
# binaries may not be distributed without permission from the
|
# binaries may not be distributed without permission from the
|
||||||
|
|
Loading…
Reference in New Issue