about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-07-08 15:50:01 -0400
committerGitHub <noreply@github.com>2017-07-08 15:50:01 -0400
commit87514dd27af6b6b8e206143bdbf2642ca7084e9c (patch)
tree904a9a8c8efec2b316613908baa99e3fef1664af /pkgs/applications/networking
parent50831d543d37bb2953386922c6b5c7488f9028ba (diff)
parentb97747a052610b1b4883039edee14cf6210ac3b6 (diff)
downloadnixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar.gz
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar.bz2
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar.lz
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar.xz
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.tar.zst
nixlib-87514dd27af6b6b8e206143bdbf2642ca7084e9c.zip
Merge pull request #27053 from lheckemann/firefox-gamepad
firefox wrapper: add libudev to libs
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/firefox/wrapper.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index cffdfa7a97dd..1dd5c9191f00 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -8,6 +8,7 @@
 , google_talk_plugin, fribid, gnome3/*.gnome_shell*/
 , esteidfirefoxplugin
 , vlc_npapi
+, libudev
 }:
 
 ## configurability of the wrapper itself
@@ -46,7 +47,7 @@ let
      );
   libs = (if ffmpegSupport then [ ffmpeg ] else with gst_all; [ gstreamer gst-plugins-base ])
          ++ lib.optionals (cfg.enableQuakeLive or false)
-         (with xorg; [ stdenv.cc libX11 libXxf86dga libXxf86vm libXext libXt alsaLib zlib ])
+         (with xorg; [ stdenv.cc libX11 libXxf86dga libXxf86vm libXext libXt alsaLib zlib libudev ])
          ++ lib.optional (enableAdobeFlash && (cfg.enableAdobeFlashDRM or false)) hal-flash
          ++ lib.optional (config.pulseaudio or false) libpulseaudio;
   gst-plugins = with gst_all; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-ffmpeg ];