2016-08-19 19:18:14 +01:00
|
|
|
{ newScope, stdenv, makeWrapper, makeDesktopItem, ed
|
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"
|
2014-03-19 11:21:10 +00:00
|
|
|
, enableSELinux ? false
|
2012-12-03 17:23:49 +00:00
|
|
|
, enableNaCl ? false
|
2015-06-19 03:15:49 +01:00
|
|
|
, enableHotwording ? 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
|
2014-12-07 13:52:36 +00:00
|
|
|
, cupsSupport ? true
|
2014-03-19 11:21:10 +00:00
|
|
|
, pulseSupport ? false
|
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
|
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 = {
|
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 {
|
2016-09-13 18:42:55 +01:00
|
|
|
inherit enableSELinux enableNaCl enableHotwording gnomeSupport gnome
|
2016-11-08 19:18:15 +00:00
|
|
|
gnomeKeyringSupport proprietaryCodecs cupsSupport pulseSupport
|
|
|
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-03-16 12:32:39 +00:00
|
|
|
desktopItem = makeDesktopItem {
|
2014-04-27 15:39:11 +01:00
|
|
|
name = "chromium";
|
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;
|
|
|
|
|
2014-03-22 16:05:14 +00:00
|
|
|
in stdenv.mkDerivation {
|
2014-11-25 09:08:28 +00:00
|
|
|
name = "chromium${suffix}-${chromium.browser.version}";
|
2014-03-22 16:05:14 +00:00
|
|
|
|
2016-08-19 19:18:14 +01:00
|
|
|
buildInputs = [ makeWrapper ed ];
|
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\")";
|
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" \
|
2017-01-05 16:46:37 +00:00
|
|
|
${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
|
|
|
|
|
|
|
|
if [ -x "/var/setuid-wrappers/${sandboxExecutableName}" ]
|
|
|
|
then
|
|
|
|
export CHROME_DEVEL_SANDBOX="/var/setuid-wrappers/${sandboxExecutableName}"
|
|
|
|
else
|
|
|
|
export CHROME_DEVEL_SANDBOX="$sandbox/bin/${sandboxExecutableName}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# libredirect causes chromium to deadlock on startup
|
|
|
|
export LD_PRELOAD="\$(echo -n "\$LD_PRELOAD" | tr ':' '\n' | grep -v /lib/libredirect\\\\.so$ | tr '\n' ':')"
|
|
|
|
|
|
|
|
.
|
|
|
|
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"
|
|
|
|
for f in '${chromium.browser}'/share/*; do
|
|
|
|
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
|
|
|
|
2017-02-08 19:49:02 +00:00
|
|
|
inherit (chromium.browser) meta packageName version;
|
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
|
|
|
}
|