about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/firefox/common.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-21 05:20:01 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-23 17:03:41 +0100
commit25e22d96bad5333a023088c4377bcbf444f47dd6 (patch)
treed8a33b55c55b9dfe384bd02b4c1b5b3ef5cb7cd8 /pkgs/applications/networking/browsers/firefox/common.nix
parente921e84e9d8447ce5fa814a265edf91876b09630 (diff)
firefox: enable necko wifi scanner
Tied to the geolocation support flag. On Linux this uses the DBus
interface of NetworkManager to query visible accesspoints and relay them
to Mozilla location service in return for position approximation.
Diffstat (limited to 'pkgs/applications/networking/browsers/firefox/common.nix')
-rw-r--r--pkgs/applications/networking/browsers/firefox/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/common.nix b/pkgs/applications/networking/browsers/firefox/common.nix
index 1147e22241e52..75646389badf3 100644
--- a/pkgs/applications/networking/browsers/firefox/common.nix
+++ b/pkgs/applications/networking/browsers/firefox/common.nix
@@ -262,7 +262,6 @@ buildStdenv.mkDerivation ({
     "--enable-system-pixman"
     #"--enable-system-cairo"
     "--disable-tests"
-    "--disable-necko-wifi" # maybe we want to enable this at some point
     "--disable-updater"
     "--enable-default-toolkit=${default-toolkit}"
     "--with-libclang-path=${llvmPackages.libclang.lib}/lib"
@@ -286,6 +285,7 @@ buildStdenv.mkDerivation ({
   ++ flag pulseaudioSupport "pulseaudio"
   ++ flag ffmpegSupport "ffmpeg"
   ++ flag jemallocSupport "jemalloc"
+  ++ flag geolocationSupport "necko-wifi"
   ++ flag gssSupport "negotiateauth"
   ++ flag webrtcSupport "webrtc"
   ++ flag crashreporterSupport "crashreporter"