2019-12-14 17:56:44 +00:00
|
|
|
{ newScope, config, stdenv, llvmPackages_9
|
2019-06-16 20:59:06 +01:00
|
|
|
, makeWrapper, ed
|
2018-02-25 02:23:58 +00:00
|
|
|
, glib, gtk3, gnome3, gsettings-desktop-schemas
|
2019-02-18 08:17:05 +00:00
|
|
|
, libva ? null
|
2019-08-11 00:09:55 +01:00
|
|
|
, gcc, nspr, nss, patchelfUnstable, runCommand
|
|
|
|
, lib
|
2012-12-03 16:55:09 +00:00
|
|
|
|
2012-12-03 17:23:49 +00:00
|
|
|
# package customization
|
2012-12-03 16:55:09 +00:00
|
|
|
, channel ? "stable"
|
2016-09-13 18:42:55 +01:00
|
|
|
, gnomeSupport ? false, gnome ? null
|
2014-03-19 11:21:10 +00:00
|
|
|
, gnomeKeyringSupport ? false
|
2012-12-03 17:23:49 +00:00
|
|
|
, proprietaryCodecs ? true
|
2014-03-19 10:32:39 +00:00
|
|
|
, enablePepperFlash ? false
|
2014-09-30 05:00:47 +01:00
|
|
|
, enableWideVine ? false
|
2019-03-31 00:04:49 +00:00
|
|
|
, useVaapi ? false # test video on radeon, before enabling this
|
2014-12-07 13:52:36 +00:00
|
|
|
, cupsSupport ? true
|
2019-02-03 15:31:25 +00:00
|
|
|
, pulseSupport ? config.pulseaudio or stdenv.isLinux
|
2017-01-05 16:46:37 +00:00
|
|
|
, commandLineArgs ? ""
|
chromium: Minimal build (no install) from source.
This only gets chromium to build so far, installation is missing by upstream, so
we need to manually copy the corresponding files. And I guess with nix, we also
need to patch a few paths on installation.
Another issue is that at the moment, a lot of dependencies are used from the
source tree, rather than from the system.
Also, it would be nice to build using LLVM, as it really speeds up compilation a
*LOT* and also has the side effect of resulting in smaller binaries.
Working unit tests would be nice, too. Unfortunately they're quite heavyweight
and take hours to run, so I guess "someday" would be the most appropriate time
to integrate.
Further todo's:
- Allow to disable GConf, GIO and CUPS.
- Option to disable the sandbox (for whatever reason the user might have).
- Integrate gold binutils.
- Pulseaudio support.
- Clearly separate Linux specific stuff.
2012-06-12 09:19:22 +01:00
|
|
|
}:
|
2009-10-30 08:45:58 +00:00
|
|
|
|
chromium: Minimal build (no install) from source.
This only gets chromium to build so far, installation is missing by upstream, so
we need to manually copy the corresponding files. And I guess with nix, we also
need to patch a few paths on installation.
Another issue is that at the moment, a lot of dependencies are used from the
source tree, rather than from the system.
Also, it would be nice to build using LLVM, as it really speeds up compilation a
*LOT* and also has the side effect of resulting in smaller binaries.
Working unit tests would be nice, too. Unfortunately they're quite heavyweight
and take hours to run, so I guess "someday" would be the most appropriate time
to integrate.
Further todo's:
- Allow to disable GConf, GIO and CUPS.
- Option to disable the sandbox (for whatever reason the user might have).
- Integrate gold binutils.
- Pulseaudio support.
- Clearly separate Linux specific stuff.
2012-06-12 09:19:22 +01:00
|
|
|
let
|
2019-12-14 17:56:44 +00:00
|
|
|
stdenv = llvmPackages_9.stdenv;
|
|
|
|
llvmPackages = llvmPackages_9;
|
2019-02-03 15:31:25 +00:00
|
|
|
|
2014-03-19 11:21:10 +00:00
|
|
|
callPackage = newScope chromium;
|
2014-03-19 10:32:39 +00:00
|
|
|
|
2014-03-19 11:21:10 +00:00
|
|
|
chromium = {
|
2018-10-28 16:07:19 +00:00
|
|
|
inherit stdenv llvmPackages;
|
2018-10-24 22:25:36 +01:00
|
|
|
|
2016-05-04 21:11:50 +01:00
|
|
|
upstream-info = (callPackage ./update.nix {}).getChannel channel;
|
2014-03-19 11:51:39 +00:00
|
|
|
|
2016-10-29 03:05:53 +01:00
|
|
|
mkChromiumDerivation = callPackage ./common.nix {
|
2019-12-14 18:07:28 +00:00
|
|
|
inherit gnome gnomeSupport gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport useVaapi;
|
2014-03-19 11:57:49 +00:00
|
|
|
};
|
|
|
|
|
2019-09-05 22:27:04 +01:00
|
|
|
browser = callPackage ./browser.nix { inherit channel enableWideVine; };
|
2014-03-22 16:05:14 +00:00
|
|
|
|
2014-03-19 11:57:49 +00:00
|
|
|
plugins = callPackage ./plugins.nix {
|
2019-04-23 02:47:19 +01:00
|
|
|
inherit enablePepperFlash;
|
2014-03-19 10:32:39 +00:00
|
|
|
};
|
2018-10-28 16:07:19 +00:00
|
|
|
};
|
2014-03-19 10:32:39 +00:00
|
|
|
|
2019-08-11 00:09:55 +01:00
|
|
|
mkrpath = p: "${lib.makeSearchPathOutput "lib" "lib64" p}:${lib.makeLibraryPath p}";
|
|
|
|
widevine = let upstream-info = chromium.upstream-info; in stdenv.mkDerivation {
|
|
|
|
name = "chromium-binary-plugin-widevine";
|
|
|
|
|
2019-09-18 22:30:15 +01:00
|
|
|
# The .deb file for Google Chrome
|
2019-08-11 00:09:55 +01:00
|
|
|
src = upstream-info.binary;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ patchelfUnstable ];
|
|
|
|
|
|
|
|
phases = [ "unpackPhase" "patchPhase" "installPhase" "checkPhase" ];
|
|
|
|
|
|
|
|
unpackCmd = let
|
2019-09-18 22:30:15 +01:00
|
|
|
soPath =
|
|
|
|
if upstream-info.channel == "stable" then
|
2019-10-22 20:40:34 +01:00
|
|
|
"./opt/google/chrome/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so"
|
2019-09-18 22:30:15 +01:00
|
|
|
else if upstream-info.channel == "beta" then
|
2019-10-10 21:32:11 +01:00
|
|
|
"./opt/google/chrome-beta/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so"
|
2019-09-18 22:30:15 +01:00
|
|
|
else if upstream-info.channel == "dev" then
|
|
|
|
"./opt/google/chrome-unstable/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so"
|
|
|
|
else
|
|
|
|
throw "Unknown chromium channel.";
|
2019-08-11 00:09:55 +01:00
|
|
|
in ''
|
|
|
|
mkdir -p plugins
|
2019-09-18 22:30:15 +01:00
|
|
|
# Extract just libwidevinecdm.so from upstream's .deb file
|
|
|
|
ar p "$src" data.tar.xz | tar xJ -C plugins ${soPath}
|
|
|
|
mv plugins/${soPath} plugins/
|
|
|
|
rm -rf plugins/opt
|
2019-08-11 00:09:55 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
! find -iname '*.so' -exec ldd {} + | grep 'not found'
|
|
|
|
'';
|
|
|
|
|
|
|
|
PATCH_RPATH = mkrpath [ gcc.cc glib nspr nss ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
patchelf --set-rpath "$PATCH_RPATH" libwidevinecdm.so
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -vD libwidevinecdm.so \
|
|
|
|
"$out/lib/libwidevinecdm.so"
|
|
|
|
'';
|
|
|
|
|
2019-09-18 22:30:15 +01:00
|
|
|
meta = {
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
license = lib.licenses.unfree;
|
|
|
|
};
|
2019-08-11 00:09:55 +01:00
|
|
|
};
|
|
|
|
|
2014-11-25 09:08:28 +00:00
|
|
|
suffix = if channel != "stable" then "-" + channel else "";
|
|
|
|
|
2016-08-06 09:13:20 +01:00
|
|
|
sandboxExecutableName = chromium.browser.passthru.sandboxExecutableName;
|
|
|
|
|
2017-06-16 06:49:50 +01:00
|
|
|
version = chromium.browser.version;
|
|
|
|
|
2019-09-18 22:30:15 +01:00
|
|
|
# We want users to be able to enableWideVine without rebuilding all of
|
|
|
|
# chromium, so we have a separate derivation here that copies chromium
|
|
|
|
# and adds the unfree libwidevinecdm.so.
|
2019-08-11 00:09:55 +01:00
|
|
|
chromiumWV = let browser = chromium.browser; in if enableWideVine then
|
|
|
|
runCommand (browser.name + "-wv") { version = browser.version; }
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
2019-09-18 22:30:15 +01:00
|
|
|
cp -a ${browser}/* $out/
|
|
|
|
chmod u+w $out/libexec/chromium
|
2019-10-22 20:40:34 +01:00
|
|
|
mkdir -p $out/libexec/chromium/WidevineCdm/_platform_specific/linux_x64
|
|
|
|
cp ${widevine}/lib/libwidevinecdm.so $out/libexec/chromium/WidevineCdm/_platform_specific/linux_x64/
|
2019-08-11 00:09:55 +01:00
|
|
|
''
|
|
|
|
else browser;
|
2014-03-22 16:05:14 +00:00
|
|
|
in stdenv.mkDerivation {
|
2017-06-16 06:49:50 +01:00
|
|
|
name = "chromium${suffix}-${version}";
|
|
|
|
inherit version;
|
2014-03-22 16:05:14 +00:00
|
|
|
|
2017-06-16 06:49:50 +01:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper ed
|
|
|
|
|
|
|
|
# needed for GSETTINGS_SCHEMAS_PATH
|
2018-02-25 02:23:58 +00:00
|
|
|
gsettings-desktop-schemas glib gtk3
|
2017-06-16 06:49:50 +01:00
|
|
|
|
|
|
|
# needed for XDG_ICON_DIRS
|
2019-02-13 21:47:50 +00:00
|
|
|
gnome3.adwaita-icon-theme
|
2017-06-16 06:49:50 +01:00
|
|
|
];
|
2014-03-22 16:05:14 +00:00
|
|
|
|
2016-08-06 09:13:20 +01:00
|
|
|
outputs = ["out" "sandbox"];
|
|
|
|
|
2014-03-22 16:05:14 +00:00
|
|
|
buildCommand = let
|
2019-08-11 00:09:55 +01:00
|
|
|
browserBinary = "${chromiumWV}/libexec/chromium/chromium";
|
2016-02-02 04:04:41 +00:00
|
|
|
getWrapperFlags = plugin: "$(< \"${plugin}/nix-support/wrapper-flags\")";
|
2019-02-18 08:17:05 +00:00
|
|
|
libPath = stdenv.lib.makeLibraryPath ([]
|
|
|
|
++ stdenv.lib.optional useVaapi libva
|
|
|
|
);
|
|
|
|
|
2014-11-25 12:39:16 +00:00
|
|
|
in with stdenv.lib; ''
|
2016-08-27 16:38:25 +01:00
|
|
|
mkdir -p "$out/bin"
|
2012-06-15 09:19:26 +01:00
|
|
|
|
2016-08-19 19:18:14 +01:00
|
|
|
eval makeWrapper "${browserBinary}" "$out/bin/chromium" \
|
2018-03-06 13:00:14 +00:00
|
|
|
--add-flags ${escapeShellArg (escapeShellArg commandLineArgs)} \
|
2016-02-02 04:04:41 +00:00
|
|
|
${concatMapStringsSep " " getWrapperFlags chromium.plugins.enabled}
|
2012-06-15 09:19:26 +01:00
|
|
|
|
2016-08-19 19:18:14 +01:00
|
|
|
ed -v -s "$out/bin/chromium" << EOF
|
|
|
|
2i
|
|
|
|
|
2017-01-29 10:11:01 +00:00
|
|
|
if [ -x "/run/wrappers/bin/${sandboxExecutableName}" ]
|
2016-08-19 19:18:14 +01:00
|
|
|
then
|
2017-01-29 10:11:01 +00:00
|
|
|
export CHROME_DEVEL_SANDBOX="/run/wrappers/bin/${sandboxExecutableName}"
|
2016-08-19 19:18:14 +01:00
|
|
|
else
|
|
|
|
export CHROME_DEVEL_SANDBOX="$sandbox/bin/${sandboxExecutableName}"
|
|
|
|
fi
|
|
|
|
|
2019-10-30 22:39:17 +00:00
|
|
|
'' + lib.optionalString (libPath != "") ''
|
|
|
|
# To avoid loading .so files from cwd, LD_LIBRARY_PATH here must not
|
|
|
|
# contain an empty section before or after a colon.
|
|
|
|
export LD_LIBRARY_PATH="\$LD_LIBRARY_PATH\''${LD_LIBRARY_PATH:+:}${libPath}"
|
|
|
|
'' + ''
|
2019-02-18 08:17:05 +00:00
|
|
|
|
2016-08-19 19:18:14 +01:00
|
|
|
# libredirect causes chromium to deadlock on startup
|
|
|
|
export LD_PRELOAD="\$(echo -n "\$LD_PRELOAD" | tr ':' '\n' | grep -v /lib/libredirect\\\\.so$ | tr '\n' ':')"
|
|
|
|
|
2017-06-16 06:49:50 +01:00
|
|
|
export XDG_DATA_DIRS=$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH\''${XDG_DATA_DIRS:+:}\$XDG_DATA_DIRS
|
|
|
|
|
2016-08-19 19:18:14 +01:00
|
|
|
.
|
|
|
|
w
|
|
|
|
EOF
|
2016-08-06 09:13:20 +01:00
|
|
|
|
2016-08-06 10:09:40 +01:00
|
|
|
ln -sv "${chromium.browser.sandbox}" "$sandbox"
|
2016-08-06 09:13:20 +01:00
|
|
|
|
2014-09-19 06:51:11 +01:00
|
|
|
ln -s "$out/bin/chromium" "$out/bin/chromium-browser"
|
2016-08-27 16:38:25 +01:00
|
|
|
|
2019-05-28 01:32:18 +01:00
|
|
|
mkdir -p "$out/share"
|
2018-01-21 23:33:47 +00:00
|
|
|
for f in '${chromium.browser}'/share/*; do # hello emacs */
|
2016-08-27 16:38:25 +01:00
|
|
|
ln -s -t "$out/share/" "$f"
|
|
|
|
done
|
2014-03-22 16:05:14 +00:00
|
|
|
'';
|
2014-03-23 18:48:53 +00:00
|
|
|
|
2018-01-21 23:33:47 +00:00
|
|
|
inherit (chromium.browser) packageName;
|
2019-04-23 02:47:19 +01:00
|
|
|
meta = chromium.browser.meta;
|
2014-04-01 06:36:26 +01:00
|
|
|
passthru = {
|
2016-08-06 14:40:56 +01:00
|
|
|
inherit (chromium) upstream-info browser;
|
2014-04-01 06:36:26 +01:00
|
|
|
mkDerivation = chromium.mkChromiumDerivation;
|
2016-08-06 09:13:20 +01:00
|
|
|
inherit sandboxExecutableName;
|
2014-04-01 06:36:26 +01:00
|
|
|
};
|
2014-03-22 16:05:14 +00:00
|
|
|
}
|