2019-02-03 15:31:25 +00:00
|
|
|
{ newScope, config, stdenv, llvmPackages, gcc8Stdenv, llvmPackages_7
|
|
|
|
, makeWrapper, makeDesktopItem, 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
|
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"
|
2012-12-03 17:23:49 +00:00
|
|
|
, enableNaCl ? false
|
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-02-03 15:31:25 +00:00
|
|
|
stdenv_ = if stdenv.isAarch64 then gcc8Stdenv else llvmPackages_7.stdenv;
|
|
|
|
llvmPackages_ = if stdenv.isAarch64 then llvmPackages else llvmPackages_7;
|
|
|
|
in let
|
|
|
|
stdenv = stdenv_;
|
|
|
|
llvmPackages = llvmPackages_;
|
|
|
|
|
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 {
|
2018-06-19 01:48:42 +01:00
|
|
|
inherit enableNaCl gnomeSupport gnome
|
2016-11-08 19:18:15 +00:00
|
|
|
gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport
|
2019-02-18 08:17:05 +00:00
|
|
|
useVaapi
|
2016-11-08 19:18:15 +00:00
|
|
|
enableWideVine;
|
2014-03-19 11:57:49 +00:00
|
|
|
};
|
|
|
|
|
2016-05-04 16:37:34 +01:00
|
|
|
browser = callPackage ./browser.nix { inherit channel; };
|
2014-03-22 16:05:14 +00:00
|
|
|
|
2014-03-19 11:57:49 +00:00
|
|
|
plugins = callPackage ./plugins.nix {
|
2016-11-01 10:39:34 +00:00
|
|
|
inherit enablePepperFlash enableWideVine;
|
2014-03-19 10:32:39 +00:00
|
|
|
};
|
2018-10-28 16:07:19 +00:00
|
|
|
};
|
2014-03-19 10:32:39 +00:00
|
|
|
|
2014-03-16 12:32:39 +00:00
|
|
|
desktopItem = makeDesktopItem {
|
2017-03-05 14:02:56 +00:00
|
|
|
name = "chromium-browser";
|
2015-08-04 22:35:13 +01:00
|
|
|
exec = "chromium %U";
|
2015-08-14 04:19:38 +01:00
|
|
|
icon = "chromium";
|
2014-03-16 12:32:39 +00:00
|
|
|
comment = "An open source web browser from Google";
|
|
|
|
desktopName = "Chromium";
|
|
|
|
genericName = "Web browser";
|
2014-04-20 06:01:37 +01:00
|
|
|
mimeType = stdenv.lib.concatStringsSep ";" [
|
|
|
|
"text/html"
|
|
|
|
"text/xml"
|
|
|
|
"application/xhtml+xml"
|
|
|
|
"x-scheme-handler/http"
|
|
|
|
"x-scheme-handler/https"
|
|
|
|
"x-scheme-handler/ftp"
|
|
|
|
"x-scheme-handler/mailto"
|
|
|
|
"x-scheme-handler/webcal"
|
2014-11-24 11:10:20 +00:00
|
|
|
"x-scheme-handler/about"
|
|
|
|
"x-scheme-handler/unknown"
|
2014-04-20 06:01:37 +01:00
|
|
|
];
|
2014-03-16 12:32:39 +00:00
|
|
|
categories = "Network;WebBrowser";
|
2016-02-29 19:42:58 +00:00
|
|
|
extraEntries = ''
|
|
|
|
StartupWMClass=chromium-browser
|
|
|
|
'';
|
2014-03-16 12:32:39 +00: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;
|
|
|
|
|
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
|
|
|
|
browserBinary = "${chromium.browser}/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-02-18 08:17:05 +00:00
|
|
|
export LD_LIBRARY_PATH="\$LD_LIBRARY_PATH:${libPath}"
|
|
|
|
|
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
|
|
|
|
|
|
|
mkdir -p "$out/share/applications"
|
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-16 12:32:39 +00:00
|
|
|
cp -v "${desktopItem}/share/applications/"* "$out/share/applications"
|
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;
|
|
|
|
meta = chromium.browser.meta // {
|
|
|
|
broken = if enableWideVine then
|
|
|
|
builtins.trace "WARNING: WideVine is not functional, please only use for testing"
|
|
|
|
true
|
|
|
|
else false;
|
|
|
|
};
|
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
|
|
|
}
|