mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
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.
This commit is contained in:
parent
e020640932
commit
42464f64f7
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue