summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-07-16 16:57:08 -0400
committerGitHub <noreply@github.com>2017-07-16 16:57:08 -0400
commit7fcddfe3888f294ffc1abd28db9df0fba232211b (patch)
treec4b39dd8528808d49550988099d4113b8eccc288
parent8df6d351c40592547e3b00143a53667ec18ad47e (diff)
parent42464f64f7292e1e17b8a6a74d87770016ac08e8 (diff)
downloadnixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar.gz
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar.bz2
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar.lz
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar.xz
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.tar.zst
nixlib-7fcddfe3888f294ffc1abd28db9df0fba232211b.zip
Merge pull request #27025 from corngood/firefox-drm-fix
firefox: fix the drmSupport option
-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 4fe89a403de9..7c9ffc0f4784 100644
--- a/pkgs/applications/networking/browsers/firefox/common.nix
+++ b/pkgs/applications/networking/browsers/firefox/common.nix
@@ -153,7 +153,7 @@ stdenv.mkDerivation (rec {
   ++ lib.optional googleAPISupport "--with-google-api-keyfile=ga"
   ++ flag crashreporterSupport "crashreporter"
   ++ flag safeBrowsingSupport "safe-browsing"
-  ++ flag drmSupport "eme"
+  ++ lib.optional drmSupport "--enable-eme=widevine"
 
   ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ]
                     else [ "--disable-debug" "--enable-release"