2016-05-04 08:37:34 -07:00
|
|
|
{ stdenv, mkChromiumDerivation, channel }:
|
2014-03-19 04:21:10 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-03-31 22:36:26 -07:00
|
|
|
mkChromiumDerivation (base: rec {
|
|
|
|
name = "chromium-browser";
|
2014-04-19 23:39:40 -07:00
|
|
|
packageName = "chromium";
|
2018-02-26 15:04:33 -08:00
|
|
|
buildTargets = [ "mksnapshot" "chrome_sandbox" "chrome" ];
|
2014-03-19 04:21:10 -07:00
|
|
|
|
2016-08-06 06:40:56 -07:00
|
|
|
outputs = ["out" "sandbox"];
|
|
|
|
|
|
|
|
sandboxExecutableName = "__chromium-suid-sandbox";
|
|
|
|
|
2014-03-19 04:57:49 -07:00
|
|
|
installPhase = ''
|
2017-09-15 12:32:13 -07:00
|
|
|
mkdir -p "$libExecPath"
|
2015-01-22 16:48:56 -08:00
|
|
|
cp -v "$buildPath/"*.pak "$buildPath/"*.bin "$libExecPath/"
|
2014-03-31 22:36:26 -07:00
|
|
|
cp -v "$buildPath/icudtl.dat" "$libExecPath/"
|
2014-06-18 03:11:36 -07:00
|
|
|
cp -vLR "$buildPath/locales" "$buildPath/resources" "$libExecPath/"
|
2014-03-31 22:36:26 -07:00
|
|
|
cp -v "$buildPath/chrome" "$libExecPath/$packageName"
|
2016-08-06 06:40:56 -07:00
|
|
|
|
2016-11-08 11:18:15 -08:00
|
|
|
if [ -e "$buildPath/libwidevinecdmadapter.so" ]; then
|
|
|
|
cp -v "$buildPath/libwidevinecdmadapter.so" \
|
|
|
|
"$libExecPath/libwidevinecdmadapter.so"
|
|
|
|
fi
|
|
|
|
|
2016-08-06 06:40:56 -07:00
|
|
|
mkdir -p "$sandbox/bin"
|
|
|
|
cp -v "$buildPath/chrome_sandbox" "$sandbox/bin/${sandboxExecutableName}"
|
2014-03-19 04:21:10 -07:00
|
|
|
|
|
|
|
mkdir -vp "$out/share/man/man1"
|
2014-03-31 22:36:26 -07:00
|
|
|
cp -v "$buildPath/chrome.1" "$out/share/man/man1/$packageName.1"
|
2014-03-19 04:21:10 -07:00
|
|
|
|
|
|
|
for icon_file in chrome/app/theme/chromium/product_logo_*[0-9].png; do
|
|
|
|
num_and_suffix="''${icon_file##*logo_}"
|
|
|
|
icon_size="''${num_and_suffix%.*}"
|
|
|
|
expr "$icon_size" : "^[0-9][0-9]*$" || continue
|
|
|
|
logo_output_prefix="$out/share/icons/hicolor"
|
|
|
|
logo_output_path="$logo_output_prefix/''${icon_size}x''${icon_size}/apps"
|
|
|
|
mkdir -vp "$logo_output_path"
|
2014-03-31 22:36:26 -07:00
|
|
|
cp -v "$icon_file" "$logo_output_path/$packageName.png"
|
2014-03-19 04:21:10 -07:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-08-06 06:40:56 -07:00
|
|
|
passthru = { inherit sandboxExecutableName; };
|
|
|
|
|
2017-01-03 04:54:07 -08:00
|
|
|
requiredSystemFeatures = [ "big-parallel" ];
|
|
|
|
|
2014-03-19 04:21:10 -07:00
|
|
|
meta = {
|
|
|
|
description = "An open source web browser from Google";
|
|
|
|
homepage = http://www.chromium.org/;
|
2017-10-14 02:09:00 -07:00
|
|
|
maintainers = with maintainers; [ chaoflow bendlas ];
|
2014-03-19 04:21:10 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
2018-01-21 14:42:59 -08:00
|
|
|
hydraPlatforms = if channel == "stable" then ["aarch64-linux" "x86_64-linux"] else [];
|
2018-07-30 03:29:58 -07:00
|
|
|
timeout = 172800; # 48 hours
|
2014-03-19 04:21:10 -07:00
|
|
|
};
|
2014-03-31 22:36:26 -07:00
|
|
|
})
|