about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2017-07-01 00:06:51 -0300
committerDavid McFarland <corngood@gmail.com>2017-07-01 19:56:40 -0300
commit42464f64f7292e1e17b8a6a74d87770016ac08e8 (patch)
treef6e057dbdb76f94946bde5c99ffa8b987443e598 /pkgs/applications/networking
parente02064093218e71da56f73392250cfa85e2babd1 (diff)
downloadnixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar.gz
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar.bz2
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar.lz
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar.xz
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.tar.zst
nixlib-42464f64f7292e1e17b8a6a74d87770016ac08e8.zip
firefox: fix the drmSupport option
At some point the config flag must have changed from --enable-eme to
--enable-eme=widevine, so it was having no effect.
Diffstat (limited to 'pkgs/applications/networking')
-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"