mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #7568 from malyn/firefox-hal-flash
Add enableAdobeFlashDRM option to firefoxWrapper
This commit is contained in:
commit
28192e5fa8
|
@ -12451,7 +12451,8 @@ let
|
|||
++ lib.optional (cfg.enableTrezor or false) trezor-bridge
|
||||
);
|
||||
libs = [ gstreamer gst_plugins_base ] ++ lib.optionals (cfg.enableQuakeLive or false)
|
||||
(with xlibs; [ stdenv.cc libX11 libXxf86dga libXxf86vm libXext libXt alsaLib zlib ]);
|
||||
(with xlibs; [ stdenv.cc libX11 libXxf86dga libXxf86vm libXext libXt alsaLib zlib ])
|
||||
++ lib.optional (enableAdobeFlash && (cfg.enableAdobeFlashDRM or false)) hal-flash;
|
||||
gst_plugins = [ gst_plugins_base gst_plugins_good gst_plugins_bad gst_plugins_ugly gst_ffmpeg ];
|
||||
gtk_modules = [ libcanberra ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue