d3a7c50364
Seems to be needed in order to view Netflix content, but this only pulls in the proprietary plugin and doesn't yet compile Chromium with support for it, so this is only in preparation for the bright and shiny future (where we all have rootkits implanted in our body). Of course, this plugin is disabled by default as well as all the other proprietary plugins. For the plugin derivation, we now do the checkPhase _after_ the installPhase, to make sure we also detect RPATHs pointing to the plugin directory itself, because the shared object files only exist after the installPhase. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
100 lines
3.3 KiB
Nix
100 lines
3.3 KiB
Nix
{ stdenv
|
|
, enablePepperFlash ? false
|
|
, enablePepperPDF ? false
|
|
, enableWideVine ? false
|
|
|
|
, source
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
plugins = stdenv.mkDerivation {
|
|
name = "chromium-binary-plugins";
|
|
|
|
# XXX: Only temporary and has to be version-specific
|
|
src = source.plugins;
|
|
|
|
phases = [ "unpackPhase" "patchPhase" "installPhase" "checkPhase" ];
|
|
outputs = [ "pdf" "flash" "widevine" ];
|
|
|
|
unpackCmd = let
|
|
chan = if source.channel == "dev" then "chrome-unstable"
|
|
else if source.channel == "stable" then "chrome"
|
|
else "chrome-${source.channel}";
|
|
in ''
|
|
mkdir -p plugins
|
|
ar p "$src" data.tar.lzma | tar xJ -C plugins --strip-components=4 \
|
|
./opt/google/${chan}/PepperFlash \
|
|
./opt/google/${chan}/libpdf.so \
|
|
./opt/google/${chan}/libwidevinecdm.so \
|
|
./opt/google/${chan}/libwidevinecdmadapter.so
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
! find -iname '*.so' -exec ldd {} + | grep 'not found'
|
|
'';
|
|
|
|
patchPhase = let
|
|
rpaths = [ stdenv.gcc.gcc ];
|
|
mkrpath = p: "${makeSearchPath "lib64" p}:${makeSearchPath "lib" p}";
|
|
in ''
|
|
for sofile in PepperFlash/libpepflashplayer.so libpdf.so \
|
|
libwidevinecdm.so libwidevinecdmadapter.so; do
|
|
chmod +x "$sofile"
|
|
patchelf --set-rpath "${mkrpath rpaths}" "$sofile"
|
|
done
|
|
|
|
patchelf --set-rpath "$widevine/lib:${mkrpath rpaths}" \
|
|
libwidevinecdmadapter.so
|
|
'';
|
|
|
|
installPhase = let
|
|
pdfName = "Chrome PDF Viewer";
|
|
pdfDescription = "Portable Document Format";
|
|
pdfMimeTypes = concatStringsSep ";" [
|
|
"application/pdf"
|
|
"application/x-google-chrome-print-preview-pdf"
|
|
];
|
|
pdfInfo = "#${pdfName}#${pdfDescription};${pdfMimeTypes}";
|
|
|
|
wvName = "Widevine Content Decryption Module";
|
|
wvDescription = "Playback of encrypted HTML audio/video content";
|
|
wvMimeTypes = "application/x-ppapi-widevine-cdm";
|
|
wvModule = "$widevine/lib/libwidevinecdmadapter.so";
|
|
wvInfo = "#${wvName}#${wvDescription}:${wvMimeTypes}";
|
|
in ''
|
|
install -vD libpdf.so "$pdf/lib/libpdf.so"
|
|
mkdir -p "$pdf/nix-support"
|
|
echo "--register-pepper-plugins='$pdf/lib/libpdf.so${pdfInfo}'" \
|
|
> "$pdf/nix-support/chromium-flags"
|
|
|
|
flashVersion="$(
|
|
sed -n -r 's/.*"version": "([^"]+)",.*/\1/p' PepperFlash/manifest.json
|
|
)"
|
|
|
|
install -vD PepperFlash/libpepflashplayer.so \
|
|
"$flash/lib/libpepflashplayer.so"
|
|
mkdir -p "$flash/nix-support"
|
|
echo "--ppapi-flash-path='$flash/lib/libpepflashplayer.so'" \
|
|
"--ppapi-flash-version=$flashVersion" \
|
|
> "$flash/nix-support/chromium-flags"
|
|
|
|
install -vD libwidevinecdm.so \
|
|
"$widevine/lib/libwidevinecdm.so"
|
|
install -vD libwidevinecdmadapter.so \
|
|
"$widevine/lib/libwidevinecdmadapter.so"
|
|
mkdir -p "$widevine/nix-support"
|
|
echo "--register-pepper-plugins='${wvModule}${wvInfo}'" \
|
|
> "$widevine/nix-support/chromium-flags"
|
|
'';
|
|
|
|
passthru.flagsEnabled = let
|
|
enabledPlugins = optional enablePepperFlash plugins.flash
|
|
++ optional enablePepperPDF plugins.pdf
|
|
++ optional enableWideVine plugins.widevine;
|
|
getFlags = plugin: "$(< ${plugin}/nix-support/chromium-flags)";
|
|
in concatStringsSep " " (map getFlags enabledPlugins);
|
|
};
|
|
in plugins
|