2019-02-18 22:41:56 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2020-01-05 08:26:42 +00:00
|
|
|
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
2019-06-18 19:55:30 +00:00
|
|
|
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
2019-02-18 22:41:56 +00:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages chromium)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
#:use-module (guix store)
|
|
|
|
#:use-module (guix monads)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages assembly)
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages bison)
|
|
|
|
#:use-module (gnu packages build-tools)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages cups)
|
|
|
|
#:use-module (gnu packages curl)
|
|
|
|
#:use-module (gnu packages fontutils)
|
2019-07-17 14:30:23 +00:00
|
|
|
#:use-module (gnu packages freedesktop)
|
2019-02-18 22:41:56 +00:00
|
|
|
#:use-module (gnu packages ghostscript)
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
#:use-module (gnu packages gperf)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages icu4c)
|
|
|
|
#:use-module (gnu packages image)
|
|
|
|
#:use-module (gnu packages libevent)
|
|
|
|
#:use-module (gnu packages libffi)
|
|
|
|
#:use-module (gnu packages linux)
|
2020-02-24 21:56:30 +00:00
|
|
|
#:use-module (gnu packages llvm)
|
2019-02-18 22:41:56 +00:00
|
|
|
#:use-module (gnu packages kerberos)
|
|
|
|
#:use-module (gnu packages ninja)
|
|
|
|
#:use-module (gnu packages node)
|
gnu: Move nss & co. to nss.scm.
* gnu/packages/gnuzilla.scm (nspr, nss): Move to...
* gnu/packages/nss.scm: ... here. New file.
* gnu/packages/chromium.scm, gnu/packages/disk.scm,
gnu/packages/freedesktop.scm, gnu/packages/gnome.scm,
gnu/packages/gnunet.scm, gnu/packages/java.scm,
gnu/packages/libreoffice.scm, gnu/packages/linux.scm,
gnu/packages/mate.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/password-utils.scm,
gnu/packages/polkit.scm, gnu/packages/qt.scm,
gnu/packages/sssd.scm, gnu/packages/storage.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust
accordingly.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm.
2019-04-04 13:14:57 +00:00
|
|
|
#:use-module (gnu packages nss)
|
2019-02-18 22:41:56 +00:00
|
|
|
#:use-module (gnu packages pciutils)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages pulseaudio)
|
|
|
|
#:use-module (gnu packages python)
|
|
|
|
#:use-module (gnu packages python-web)
|
|
|
|
#:use-module (gnu packages python-xyz)
|
|
|
|
#:use-module (gnu packages regex)
|
|
|
|
#:use-module (gnu packages serialization)
|
|
|
|
#:use-module (gnu packages speech)
|
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module (gnu packages valgrind)
|
|
|
|
#:use-module (gnu packages vulkan)
|
|
|
|
#:use-module (gnu packages video)
|
|
|
|
#:use-module (gnu packages xiph)
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages xdisorg)
|
2020-02-05 10:32:19 +00:00
|
|
|
#:use-module (gnu packages xorg)
|
2020-02-24 21:46:03 +00:00
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (srfi srfi-1))
|
2019-02-18 22:41:56 +00:00
|
|
|
|
|
|
|
(define %preserved-third-party-files
|
2019-08-03 21:24:07 +00:00
|
|
|
'("base/third_party/cityhash" ;Expat
|
2019-11-15 16:47:02 +00:00
|
|
|
"base/third_party/double_conversion" ;BSD-3
|
2019-02-18 22:41:56 +00:00
|
|
|
"base/third_party/dynamic_annotations" ;BSD-2
|
|
|
|
"base/third_party/icu" ;Unicode, X11-style
|
|
|
|
"base/third_party/superfasthash" ;BSD-3
|
|
|
|
"base/third_party/symbolize" ;BSD-3
|
|
|
|
"base/third_party/xdg_mime" ;LGPL2.0+ or Academic 2.0
|
|
|
|
"base/third_party/xdg_user_dirs" ;Expat
|
|
|
|
"chrome/third_party/mozilla_security_manager" ;MPL-1.1/GPL2+/LGPL2.1+
|
|
|
|
"courgette/third_party/bsdiff" ;BSD-2, BSD protection license
|
|
|
|
"courgette/third_party/divsufsort" ;Expat
|
|
|
|
"net/third_party/mozilla_security_manager" ;MPL-1.1/GPL2+/LGPL2.1+
|
|
|
|
"net/third_party/nss" ;MPL-2.0
|
2019-08-03 21:24:07 +00:00
|
|
|
"net/third_party/quiche" ;BSD-3
|
2019-02-18 22:41:56 +00:00
|
|
|
"net/third_party/uri_template" ;ASL2.0
|
|
|
|
"third_party/abseil-cpp" ;ASL2.0
|
|
|
|
"third_party/adobe/flash/flapper_version.h" ;no license, trivial
|
|
|
|
"third_party/angle" ;BSD-3
|
|
|
|
"third_party/angle/src/common/third_party/base" ;BSD-3
|
|
|
|
"third_party/angle/src/common/third_party/smhasher" ;Public domain
|
|
|
|
"third_party/angle/src/common/third_party/xxhash" ;BSD-2
|
|
|
|
"third_party/angle/src/third_party/compiler" ;BSD-2
|
|
|
|
"third_party/angle/src/third_party/libXNVCtrl" ;Expat
|
|
|
|
"third_party/angle/src/third_party/trace_event" ;BSD-3
|
|
|
|
"third_party/angle/third_party/vulkan-headers" ;ASL2.0
|
|
|
|
"third_party/angle/third_party/vulkan-loader" ;ASL2.0
|
|
|
|
"third_party/angle/third_party/vulkan-tools" ;ASL2.0
|
|
|
|
"third_party/angle/third_party/vulkan-validation-layers" ;ASL2.0
|
|
|
|
"third_party/apple_apsl" ;APSL2.0
|
2019-06-12 10:00:26 +00:00
|
|
|
"third_party/axe-core" ;MPL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/blink" ;BSD-3, LGPL2+
|
|
|
|
"third_party/boringssl" ;OpenSSL/ISC (Google additions are ISC)
|
|
|
|
"third_party/boringssl/src/third_party/fiat" ;Expat
|
|
|
|
"third_party/breakpad" ;BSD-3
|
|
|
|
"third_party/brotli" ;Expat
|
|
|
|
"third_party/cacheinvalidation" ;ASL2.0
|
|
|
|
"third_party/catapult" ;BSD-3
|
|
|
|
"third_party/catapult/common/py_vulcanize/third_party/rcssmin" ;ASL2.0
|
|
|
|
"third_party/catapult/common/py_vulcanize/third_party/rjsmin" ;ASL2.0
|
|
|
|
"third_party/catapult/third_party/polymer" ;BSD-3
|
2020-02-24 21:56:30 +00:00
|
|
|
;; XXX: This is a minified version of <https://d3js.org/>.
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/catapult/tracing/third_party/d3" ;BSD-3
|
|
|
|
"third_party/catapult/tracing/third_party/gl-matrix" ;Expat
|
2020-02-24 21:56:30 +00:00
|
|
|
;; XXX: Minified version of <https://github.com/Stuk/jszip>.
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/catapult/tracing/third_party/jszip" ;Expat or GPL3
|
|
|
|
"third_party/catapult/tracing/third_party/mannwhitneyu" ;Expat
|
|
|
|
"third_party/catapult/tracing/third_party/oboe" ;BSD-2
|
2020-02-24 21:56:30 +00:00
|
|
|
;; XXX: Minified version of <https://github.com/nodeca/pako>.
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/catapult/tracing/third_party/pako" ;Expat
|
|
|
|
"third_party/ced" ;BSD-3
|
|
|
|
"third_party/cld_3" ;ASL2.0
|
2019-11-15 16:47:02 +00:00
|
|
|
"third_party/closure_compiler" ;ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/crashpad" ;ASL2.0
|
2019-06-12 10:00:26 +00:00
|
|
|
"third_party/crashpad/crashpad/third_party/lss" ;ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/crashpad/crashpad/third_party/zlib/zlib_crashpad.h" ;Zlib
|
|
|
|
"third_party/crc32c" ;BSD-3
|
|
|
|
"third_party/cros_system_api" ;BSD-3
|
2019-04-30 20:48:52 +00:00
|
|
|
"third_party/dav1d" ;BSD-2
|
2019-06-12 10:00:26 +00:00
|
|
|
"third_party/dawn" ;ASL2.0
|
2019-11-15 16:47:02 +00:00
|
|
|
"third_party/depot_tools/owners.py" ;BSD-3
|
2020-02-24 21:56:30 +00:00
|
|
|
"third_party/devtools-frontend" ;BSD-3
|
2020-02-25 15:14:23 +00:00
|
|
|
"third_party/devtools-frontend/src/third_party/axe-core" ;MPL2.0
|
|
|
|
"third_party/devtools-frontend/src/third_party/pyjson5" ;ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/dom_distiller_js" ;BSD-3
|
2019-04-30 20:48:52 +00:00
|
|
|
"third_party/emoji-segmenter" ;ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/flatbuffers" ;ASL2.0
|
2019-04-30 20:48:52 +00:00
|
|
|
"third_party/glslang" ;BSD-3, Expat, ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/google_input_tools" ;ASL2.0
|
|
|
|
"third_party/google_input_tools/third_party/closure_library" ;ASL2.0
|
|
|
|
"third_party/google_input_tools/third_party/closure_library/third_party/closure" ;Expat
|
|
|
|
"third_party/googletest" ;BSD-3
|
|
|
|
"third_party/hunspell" ;MPL1.1/GPL2+/LGPL2.1+
|
|
|
|
"third_party/iccjpeg" ;IJG
|
|
|
|
"third_party/inspector_protocol" ;BSD-3
|
|
|
|
"third_party/jinja2" ;BSD-3
|
|
|
|
"third_party/jstemplate" ;ASL2.0
|
|
|
|
"third_party/khronos" ;Expat, SGI
|
|
|
|
"third_party/leveldatabase" ;BSD-3
|
|
|
|
"third_party/libXNVCtrl" ;Expat
|
|
|
|
"third_party/libaddressinput" ;ASL2.0
|
|
|
|
"third_party/libaom" ;BSD-2 or "Alliance for Open Media Patent License 1.0"
|
|
|
|
"third_party/libaom/source/libaom/third_party/vector" ;Expat
|
|
|
|
"third_party/libaom/source/libaom/third_party/x86inc" ;ISC
|
2020-02-24 21:56:30 +00:00
|
|
|
"third_party/libgifcodec" ;MPL1.1/GPL2+/LGPL2.1+, BSD-3, BSD-2
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/libjingle_xmpp" ;BSD-3
|
|
|
|
"third_party/libphonenumber" ;ASL2.0
|
|
|
|
"third_party/libsecret" ;LGPL2.1+
|
|
|
|
"third_party/libsrtp" ;BSD-3
|
|
|
|
"third_party/libsync" ;ASL2.0
|
|
|
|
"third_party/libudev" ;LGPL2.1+
|
|
|
|
"third_party/libwebm" ;BSD-3
|
|
|
|
"third_party/libxml/chromium" ;BSD-3
|
|
|
|
"third_party/libyuv" ;BSD-3
|
|
|
|
"third_party/lss" ;BSD-3
|
|
|
|
"third_party/markupsafe" ;BSD-3
|
|
|
|
"third_party/mesa_headers" ;Expat, SGI
|
|
|
|
"third_party/metrics_proto" ;BSD-3
|
|
|
|
"third_party/modp_b64" ;BSD-3
|
|
|
|
"third_party/nasm" ;BSD-2
|
|
|
|
"third_party/node" ;Expat
|
|
|
|
"third_party/node/node_modules/polymer-bundler/lib/third_party/UglifyJS2" ;BSD-2
|
2019-11-15 16:47:02 +00:00
|
|
|
"third_party/one_euro_filter" ;BSD-3
|
2019-08-03 21:24:07 +00:00
|
|
|
"third_party/openscreen" ;BSD-3
|
2019-11-15 16:47:02 +00:00
|
|
|
"third_party/openscreen/src/third_party/tinycbor" ;Expat
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/ots" ;BSD-3
|
|
|
|
"third_party/pdfium" ;BSD-3
|
|
|
|
"third_party/pdfium/third_party/agg23" ;Expat
|
|
|
|
"third_party/pdfium/third_party/base" ;BSD-3
|
|
|
|
"third_party/pdfium/third_party/bigint" ;Public domain, BSD-3
|
|
|
|
"third_party/pdfium/third_party/skia_shared" ;BSD-3
|
|
|
|
"third_party/pdfium/third_party/freetype/include/pstables.h" ;FreeType
|
2020-02-25 15:14:23 +00:00
|
|
|
"third_party/perfetto" ;ASL2.0
|
2019-06-12 10:00:26 +00:00
|
|
|
"third_party/pffft" ;the "FFTPACK" license, similar to BSD-3
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/ply" ;BSD-3
|
|
|
|
"third_party/polymer" ;BSD-3
|
2019-11-15 16:47:02 +00:00
|
|
|
"third_party/private-join-and-compute" ;ASL2.0
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/protobuf" ;BSD-3
|
|
|
|
"third_party/protobuf/third_party/six" ;Expat
|
|
|
|
"third_party/pyjson5" ;ASL2.0
|
|
|
|
"third_party/qcms" ;Expat
|
|
|
|
"third_party/rnnoise" ;BSD-3
|
|
|
|
"third_party/s2cellid" ;ASL2.0
|
|
|
|
"third_party/sfntly" ;ASL2.0
|
|
|
|
"third_party/skia" ;BSD-3
|
2019-08-03 21:24:07 +00:00
|
|
|
"third_party/skia/include/third_party/skcms" ;BSD-3
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/skia/third_party/skcms" ;BSD-3
|
2019-08-03 21:24:07 +00:00
|
|
|
"third_party/skia/third_party/vulkanmemoryallocator" ;BSD-3, Expat
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/smhasher" ;Expat, public domain
|
|
|
|
"third_party/speech-dispatcher" ;GPL2+
|
|
|
|
"third_party/spirv-headers" ;ASL2.0
|
|
|
|
"third_party/SPIRV-Tools" ;ASL2.0
|
|
|
|
"third_party/sqlite" ;Public domain
|
|
|
|
"third_party/ungoogled" ;BSD-3
|
|
|
|
"third_party/usb_ids" ;BSD-3
|
|
|
|
"third_party/usrsctp" ;BSD-2
|
2019-07-17 14:30:23 +00:00
|
|
|
"third_party/wayland/wayland_scanner_wrapper.py" ;BSD-3
|
|
|
|
"third_party/wayland-protocols" ;Expat
|
2019-02-18 22:41:56 +00:00
|
|
|
"third_party/web-animations-js" ;ASL2.0
|
|
|
|
"third_party/webdriver" ;ASL2.0
|
|
|
|
"third_party/webrtc" ;BSD-3
|
|
|
|
"third_party/webrtc/common_audio/third_party/fft4g" ;Non-copyleft
|
|
|
|
"third_party/webrtc/common_audio/third_party/spl_sqrt_floor" ;Public domain
|
|
|
|
"third_party/webrtc/modules/third_party/fft" ;Non-copyleft
|
|
|
|
"third_party/webrtc/modules/third_party/g711" ;Public domain
|
|
|
|
"third_party/webrtc/modules/third_party/g722" ;Public domain
|
|
|
|
"third_party/webrtc/rtc_base/third_party/base64" ;Non-copyleft
|
|
|
|
"third_party/webrtc/rtc_base/third_party/sigslot" ;Public domain
|
|
|
|
"third_party/widevine/cdm/widevine_cdm_version.h" ;BSD-3
|
|
|
|
"third_party/widevine/cdm/widevine_cdm_common.h" ;BSD-3
|
|
|
|
"third_party/woff2" ;ASL2.0
|
|
|
|
"third_party/xdg-utils" ;Expat
|
|
|
|
"third_party/yasm/run_yasm.py" ;BSD-2 or BSD-3
|
|
|
|
"third_party/zlib/google" ;BSD-3
|
|
|
|
"url/third_party/mozilla" ;BSD-3, MPL1.1/GPL2+/LGPL2.1+
|
2019-03-31 18:55:47 +00:00
|
|
|
"v8/src/third_party/siphash" ;Public domain
|
2019-02-18 22:41:56 +00:00
|
|
|
"v8/src/third_party/utf8-decoder" ;Expat
|
|
|
|
"v8/src/third_party/valgrind" ;BSD-4
|
|
|
|
"v8/third_party/inspector_protocol" ;BSD-3
|
|
|
|
"v8/third_party/v8/builtins")) ;PSFL
|
|
|
|
|
|
|
|
(define* (computed-origin-method gexp-promise hash-algo hash
|
|
|
|
#:optional (name "source")
|
|
|
|
#:key (system (%current-system))
|
|
|
|
(guile (default-guile)))
|
|
|
|
"Return a derivation that executes the G-expression that results
|
|
|
|
from forcing GEXP-PROMISE."
|
|
|
|
(mlet %store-monad ((guile (package->derivation guile system)))
|
|
|
|
(gexp->derivation (or name "computed-origin")
|
|
|
|
(force gexp-promise)
|
2019-02-22 15:05:59 +00:00
|
|
|
#:graft? #f ;nothing to graft
|
2019-02-18 22:41:56 +00:00
|
|
|
#:system system
|
|
|
|
#:guile-for-build guile)))
|
|
|
|
|
2020-04-03 14:25:45 +00:00
|
|
|
(define %chromium-version "80.0.3987.163")
|
2020-03-19 08:09:47 +00:00
|
|
|
(define %ungoogled-revision "516e2d990a50a4bbeb8c583e56333c2935e2af95")
|
2020-02-24 21:56:30 +00:00
|
|
|
(define %debian-revision "debian/80.0.3987.116-1")
|
2019-02-23 15:03:31 +00:00
|
|
|
(define package-revision "0")
|
2019-02-22 14:44:56 +00:00
|
|
|
(define %package-version (string-append %chromium-version "-"
|
|
|
|
package-revision "."
|
|
|
|
(string-take %ungoogled-revision 7)))
|
2019-02-18 22:41:56 +00:00
|
|
|
|
2019-06-11 08:09:24 +00:00
|
|
|
(define %chromium-origin
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://commondatastorage.googleapis.com"
|
|
|
|
"/chromium-browser-official/chromium-"
|
|
|
|
%chromium-version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-04-03 14:25:45 +00:00
|
|
|
"0ikk4cgz3jgjhyncsvlqvlc03y7jywjpa6v34fwsjxs88flyzpdn"))))
|
2019-06-11 08:09:24 +00:00
|
|
|
|
|
|
|
(define %ungoogled-origin
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
2020-03-03 23:03:57 +00:00
|
|
|
(uri (git-reference (url "https://github.com/Eloston/ungoogled-chromium")
|
2019-06-11 08:09:24 +00:00
|
|
|
(commit %ungoogled-revision)))
|
|
|
|
(file-name (git-file-name "ungoogled-chromium"
|
|
|
|
(string-take %ungoogled-revision 7)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-03-19 08:09:47 +00:00
|
|
|
"0nm55qq4ahw9haf5g7hmzic4mr2xjgpay7lxps7xjp7s1pda4g0q"))))
|
2019-06-11 08:09:24 +00:00
|
|
|
|
|
|
|
(define %debian-origin
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://salsa.debian.org/chromium-team/chromium.git")
|
|
|
|
(commit %debian-revision)))
|
|
|
|
(file-name (git-file-name "debian-chromium-packaging"
|
2020-02-05 10:32:19 +00:00
|
|
|
(match (string-split %debian-revision #\/)
|
|
|
|
((_ revision) revision)
|
|
|
|
(_ (string-take %debian-revision 7)))))
|
2019-06-11 08:09:24 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2020-02-24 21:56:30 +00:00
|
|
|
"1cc5sp566dd8f2grgr770xwbxgxf58dk1w7q3s8pmv4js5h3pwq8"))))
|
2019-08-03 21:24:07 +00:00
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
;; This is a "computed" origin that does the following:
|
2019-03-31 18:55:47 +00:00
|
|
|
;; *) Runs the Ungoogled scripts on a pristine Chromium tarball.
|
|
|
|
;; *) Applies Debians Chromium patches, for their unbundling and GCC work.
|
|
|
|
;; *) Prunes all third_party directories that are not explicitly preserved.
|
|
|
|
;; *) Adjusts "GN" build files such that system libraries are preferred.
|
2019-02-18 22:41:56 +00:00
|
|
|
(define ungoogled-chromium-source
|
2019-06-11 08:09:24 +00:00
|
|
|
(let ((chromium-source %chromium-origin)
|
|
|
|
(ungoogled-source %ungoogled-origin)
|
|
|
|
(debian-source %debian-origin))
|
2019-02-18 22:41:56 +00:00
|
|
|
(origin
|
|
|
|
(method computed-origin-method)
|
2019-02-22 14:44:56 +00:00
|
|
|
(file-name (string-append "ungoogled-chromium-" %package-version ".tar.xz"))
|
2019-02-18 22:41:56 +00:00
|
|
|
(sha256 #f)
|
|
|
|
(uri
|
|
|
|
(delay
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
#~(begin
|
2019-03-31 18:55:47 +00:00
|
|
|
(use-modules (guix build utils)
|
|
|
|
(ice-9 rdelim)
|
|
|
|
(srfi srfi-1)
|
|
|
|
(srfi srfi-26))
|
2019-02-18 22:41:56 +00:00
|
|
|
(let ((chromium-dir (string-append "chromium-" #$%chromium-version))
|
|
|
|
(preserved-files (list #$@%preserved-third-party-files)))
|
|
|
|
|
|
|
|
(set-path-environment-variable
|
|
|
|
"PATH" '("bin")
|
|
|
|
(list #+(canonical-package patch)
|
|
|
|
#+(canonical-package xz)
|
|
|
|
#+(canonical-package tar)
|
|
|
|
#+python-2
|
|
|
|
#+python))
|
|
|
|
|
|
|
|
(copy-recursively #+ungoogled-source "/tmp/ungoogled")
|
|
|
|
|
|
|
|
(with-directory-excursion "/tmp/ungoogled"
|
|
|
|
|
|
|
|
(format #t "Unpacking chromium tarball...~%")
|
|
|
|
(force-output)
|
|
|
|
(invoke "tar" "xf" #+chromium-source)
|
|
|
|
|
2019-08-03 21:24:07 +00:00
|
|
|
;; Ungoogled-Chromium contains a forked subset of the Debian
|
|
|
|
;; patches. Disable those, as we apply newer versions later.
|
|
|
|
(substitute* "patches/series"
|
2020-01-21 20:18:11 +00:00
|
|
|
((".*/debian/.*")
|
2019-08-03 21:24:07 +00:00
|
|
|
""))
|
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
(format #t "Ungooglifying...~%")
|
|
|
|
(force-output)
|
2019-03-31 18:55:47 +00:00
|
|
|
(invoke "python3" "utils/prune_binaries.py" chromium-dir
|
|
|
|
"pruning.list")
|
|
|
|
(invoke "python3" "utils/patches.py" "apply"
|
|
|
|
chromium-dir "patches")
|
|
|
|
(invoke "python3" "utils/domain_substitution.py" "apply" "-r"
|
|
|
|
"domain_regex.list" "-f" "domain_substitution.list"
|
2019-02-18 22:41:56 +00:00
|
|
|
"-c" "/tmp/domainscache.tar.gz" chromium-dir)
|
|
|
|
|
|
|
|
(with-directory-excursion chromium-dir
|
2019-03-31 18:55:47 +00:00
|
|
|
|
2020-02-24 21:56:30 +00:00
|
|
|
(format #t "Applying Debian patches...~%")
|
2019-03-31 18:55:47 +00:00
|
|
|
(force-output)
|
|
|
|
(let* ((debian #+debian-source)
|
|
|
|
(patches (string-append debian "/debian/patches"))
|
2019-08-03 21:24:07 +00:00
|
|
|
(series (string-append patches "/series")))
|
2019-03-31 18:55:47 +00:00
|
|
|
(with-input-from-file series
|
|
|
|
(lambda ()
|
|
|
|
(let loop ((line (read-line)))
|
|
|
|
(unless (eof-object? line)
|
|
|
|
(when (and (> (string-length line) 1)
|
2020-01-21 20:18:11 +00:00
|
|
|
(not (string-prefix? "#" line))
|
2019-03-31 18:55:47 +00:00
|
|
|
;; Skip the Debian-specific ones.
|
|
|
|
(not (string-prefix? "debianization/" line))
|
2019-08-03 21:24:07 +00:00
|
|
|
(not (string-prefix? "buster/" line))
|
2019-03-31 18:55:47 +00:00
|
|
|
(not (any (cute string-suffix? <> line)
|
2019-11-15 16:47:02 +00:00
|
|
|
;; These conflict with Ungoogled.
|
2019-03-31 18:55:47 +00:00
|
|
|
'("widevine-buildflag.patch"
|
|
|
|
"signin.patch"
|
2019-08-03 21:24:07 +00:00
|
|
|
"third-party-cookies.patch"
|
|
|
|
|
2019-11-15 16:47:02 +00:00
|
|
|
;; Disable workarounds for the
|
|
|
|
;; Chromium "-lite" tarball. We
|
|
|
|
;; use the "full" version and don't
|
|
|
|
;; need these patches.
|
|
|
|
"closure.patch"
|
|
|
|
"owners.patch"
|
|
|
|
|
2019-08-03 21:24:07 +00:00
|
|
|
;; XXX: 'fixes/inspector.patch'
|
|
|
|
;; makes v8 reuse the top-level
|
|
|
|
;; third_party/inspector_protocol
|
|
|
|
;; instead of its own bundled copy,
|
|
|
|
;; but that does not work here for
|
|
|
|
;; some reason. Ignore that patch
|
|
|
|
;; and those that depend on it.
|
|
|
|
"inspector.patch"))))
|
2019-03-31 18:55:47 +00:00
|
|
|
(invoke "patch" "--force" "-p1" "--input"
|
|
|
|
(string-append patches "/" line)
|
|
|
|
"--no-backup-if-mismatch"))
|
|
|
|
(loop (read-line)))))))
|
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
(format #t "Pruning third party files...~%")
|
|
|
|
(force-output)
|
|
|
|
(apply invoke "python"
|
2019-03-31 18:55:47 +00:00
|
|
|
"build/linux/unbundle/remove_bundled_libraries.py"
|
|
|
|
"--do-remove" preserved-files)
|
2019-02-18 22:41:56 +00:00
|
|
|
|
|
|
|
(format #t "Replacing GN files...~%")
|
|
|
|
(force-output)
|
|
|
|
(invoke "python3" "build/linux/unbundle/replace_gn_files.py"
|
|
|
|
"--system-libraries" "ffmpeg" "flac" "fontconfig"
|
|
|
|
"freetype" "harfbuzz-ng" "icu" "libdrm" "libevent"
|
|
|
|
"libjpeg" "libpng" "libvpx" "libwebp" "libxml"
|
|
|
|
"libxslt" "openh264" "opus" "re2" "snappy" "yasm"
|
|
|
|
"zlib"))
|
|
|
|
|
|
|
|
(format #t (string-append "Packing new ungoogled tarball ...~%"))
|
|
|
|
(force-output)
|
|
|
|
(invoke "tar" "cvfa" #$output
|
|
|
|
;; Avoid non-determinism in the archive.
|
|
|
|
"--mtime=@0"
|
|
|
|
"--owner=root:0"
|
|
|
|
"--group=root:0"
|
|
|
|
"--sort=name"
|
|
|
|
chromium-dir)
|
|
|
|
|
|
|
|
#t)))))))))
|
|
|
|
|
|
|
|
(define opus+custom
|
|
|
|
(package/inherit opus
|
|
|
|
(name "opus+custom")
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments opus)
|
|
|
|
((#:configure-flags flags ''())
|
|
|
|
;; Opus Custom is an optional extension of the Opus
|
|
|
|
;; specification that allows for unsupported frame
|
|
|
|
;; sizes. Chromium requires that this is enabled.
|
|
|
|
`(cons "--enable-custom-modes"
|
|
|
|
,flags))))))
|
|
|
|
|
|
|
|
(define-public ungoogled-chromium
|
|
|
|
(package
|
|
|
|
(name "ungoogled-chromium")
|
2019-02-22 14:44:56 +00:00
|
|
|
(version %package-version)
|
2019-02-18 22:41:56 +00:00
|
|
|
(synopsis "Graphical web browser")
|
|
|
|
(source ungoogled-chromium-source)
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f
|
2020-01-05 08:26:42 +00:00
|
|
|
;; FIXME: Chromiums RUNPATH lacks entries for some libraries.
|
2019-02-18 22:41:56 +00:00
|
|
|
#:validate-runpath? #f
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(ice-9 ftw)
|
|
|
|
(ice-9 regex)
|
|
|
|
(srfi srfi-26))
|
|
|
|
#:configure-flags
|
|
|
|
;; See tools/gn/docs/cookbook.md and
|
|
|
|
;; https://www.chromium.org/developers/gn-build-configuration
|
|
|
|
;; for usage. Run "./gn args . --list" in the Release
|
|
|
|
;; directory for an exhaustive list of supported flags.
|
|
|
|
;; (Note: The 'configure' phase will do that for you.)
|
|
|
|
(list "is_debug=false"
|
2020-02-24 21:56:30 +00:00
|
|
|
"is_cfi=false"
|
2019-02-18 22:41:56 +00:00
|
|
|
"use_gold=false"
|
|
|
|
"use_lld=false"
|
2020-02-24 21:56:30 +00:00
|
|
|
"clang_use_chrome_plugins=false"
|
2019-02-18 22:41:56 +00:00
|
|
|
"linux_use_bundled_binutils=false"
|
|
|
|
"use_custom_libcxx=false"
|
|
|
|
"use_sysroot=false"
|
|
|
|
"enable_precompiled_headers=false"
|
|
|
|
"goma_dir=\"\""
|
|
|
|
"enable_nacl=false"
|
|
|
|
"enable_nacl_nonsfi=false"
|
|
|
|
"use_allocator=\"none\""
|
|
|
|
"use_unofficial_version_number=false"
|
|
|
|
"treat_warnings_as_errors=false"
|
|
|
|
"use_official_google_api_keys=false"
|
|
|
|
"fieldtrial_testing_like_official_build=true"
|
|
|
|
"safe_browsing_mode=0"
|
|
|
|
"enable_mdns=false"
|
|
|
|
"enable_one_click_signin=false"
|
|
|
|
"enable_reading_list=false"
|
|
|
|
"enable_remoting=false"
|
|
|
|
"enable_reporting=false"
|
|
|
|
"enable_service_discovery=false"
|
|
|
|
"enable_swiftshader=false"
|
2019-06-12 10:00:26 +00:00
|
|
|
"enable_vr=false"
|
2019-02-21 07:43:46 +00:00
|
|
|
"enable_widevine=false"
|
2019-02-18 22:41:56 +00:00
|
|
|
;; Disable type-checking for the Web UI to avoid a Java dependency.
|
|
|
|
"closure_compile=false"
|
|
|
|
|
|
|
|
;; Define a custom toolchain that simply looks up CC, AR and
|
|
|
|
;; friends from the environment.
|
|
|
|
"custom_toolchain=\"//build/toolchain/linux/unbundle:default\""
|
|
|
|
"host_toolchain=\"//build/toolchain/linux/unbundle:default\""
|
|
|
|
|
|
|
|
;; Prefer system libraries.
|
|
|
|
"use_system_freetype=true"
|
|
|
|
"use_system_harfbuzz=true"
|
|
|
|
"use_system_lcms2=true"
|
|
|
|
"use_system_libdrm=true"
|
|
|
|
"use_system_libjpeg=true"
|
2019-05-01 15:46:06 +00:00
|
|
|
"use_system_libopenjpeg2=true"
|
2019-02-18 22:41:56 +00:00
|
|
|
"use_system_libpng=true"
|
|
|
|
"use_system_zlib=true"
|
|
|
|
"use_gnome_keyring=false" ;deprecated by libsecret
|
|
|
|
"use_openh264=true"
|
|
|
|
"use_pulseaudio=true"
|
|
|
|
"link_pulseaudio=true"
|
2019-03-31 15:57:48 +00:00
|
|
|
|
|
|
|
;; VA-API acceleration is currently only supported on x86_64-linux.
|
|
|
|
,@(if (string-prefix? "x86_64" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
|
|
|
'("use_vaapi=true")
|
|
|
|
'())
|
2019-02-18 22:41:56 +00:00
|
|
|
|
2019-08-03 21:24:07 +00:00
|
|
|
;; Do not artifically restrict formats supported by system ffmpeg.
|
2019-02-18 22:41:56 +00:00
|
|
|
"proprietary_codecs=true"
|
|
|
|
"ffmpeg_branding=\"Chrome\""
|
|
|
|
|
|
|
|
;; WebRTC stuff.
|
|
|
|
"rtc_use_h264=true"
|
|
|
|
;; Don't use bundled sources.
|
|
|
|
"rtc_build_json=false"
|
|
|
|
"rtc_build_libevent=false"
|
|
|
|
"rtc_build_libvpx=false"
|
|
|
|
"rtc_build_opus=false"
|
|
|
|
"rtc_build_ssl=false"
|
|
|
|
"rtc_build_libsrtp=true" ;FIXME: fails to find headers
|
|
|
|
"rtc_build_usrsctp=true" ;TODO: package this
|
|
|
|
(string-append "rtc_jsoncpp_root=\""
|
|
|
|
(assoc-ref %build-inputs "jsoncpp")
|
|
|
|
"/include/jsoncpp/json\"")
|
|
|
|
(string-append "rtc_ssl_root=\""
|
|
|
|
(assoc-ref %build-inputs "openssl")
|
|
|
|
"/include/openssl\""))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-stuff
|
2020-01-05 08:26:42 +00:00
|
|
|
(lambda _
|
2019-02-18 22:41:56 +00:00
|
|
|
(substitute*
|
|
|
|
'("base/process/launch_posix.cc"
|
|
|
|
"base/third_party/dynamic_annotations/dynamic_annotations.c"
|
|
|
|
"sandbox/linux/seccomp-bpf/sandbox_bpf.cc"
|
|
|
|
"sandbox/linux/services/credentials.cc"
|
|
|
|
"sandbox/linux/services/namespace_utils.cc"
|
|
|
|
"sandbox/linux/services/syscall_wrappers.cc"
|
|
|
|
"sandbox/linux/syscall_broker/broker_host.cc")
|
|
|
|
(("include \"base/third_party/valgrind/") "include \"valgrind/"))
|
|
|
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(substitute* file
|
|
|
|
;; Fix opus include path.
|
|
|
|
;; Do not substitute opus_private.h.
|
|
|
|
(("#include \"opus\\.h\"")
|
|
|
|
"#include \"opus/opus.h\"")
|
|
|
|
(("#include \"opus_custom\\.h\"")
|
|
|
|
"#include \"opus/opus_custom.h\"")
|
|
|
|
(("#include \"opus_defines\\.h\"")
|
|
|
|
"#include \"opus/opus_defines.h\"")
|
|
|
|
(("#include \"opus_multistream\\.h\"")
|
|
|
|
"#include \"opus/opus_multistream.h\"")
|
|
|
|
(("#include \"opus_types\\.h\"")
|
|
|
|
"#include \"opus/opus_types.h\"")))
|
|
|
|
(find-files (string-append "third_party/webrtc/modules"
|
|
|
|
"/audio_coding/codecs/opus")))
|
|
|
|
|
|
|
|
(substitute* "chrome/common/chrome_paths.cc"
|
|
|
|
(("/usr/share/chromium/extensions")
|
|
|
|
;; TODO: Add ~/.guix-profile.
|
|
|
|
"/run/current-system/profile/share/chromium/extensions"))
|
|
|
|
|
2019-11-15 16:47:02 +00:00
|
|
|
;; Many files try to include ICU headers from "third_party/icu/...".
|
|
|
|
;; Remove the "third_party/" prefix to use system headers instead.
|
|
|
|
(substitute* (find-files "chrome" "\\.cc$")
|
|
|
|
(("third_party/icu/source/(common|i18n)/")
|
|
|
|
""))
|
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
;; XXX: Should be unnecessary when use_system_lcms2=true.
|
2019-11-15 16:47:02 +00:00
|
|
|
(substitute* "third_party/pdfium/core/fxcodec/icc/iccmodule.h"
|
2019-02-18 22:41:56 +00:00
|
|
|
(("include \"third_party/lcms/include/lcms2\\.h\"")
|
|
|
|
"include \"lcms2.h\""))
|
|
|
|
|
|
|
|
(substitute*
|
|
|
|
"third_party/breakpad/breakpad/src/common/linux/libcurl_wrapper.h"
|
|
|
|
(("include \"third_party/curl") "include \"curl"))
|
|
|
|
|
|
|
|
(substitute* "third_party/webrtc/rtc_base/strings/json.h"
|
|
|
|
(("#include \"third_party/jsoncpp/") "#include \"json/"))
|
|
|
|
|
2020-02-24 21:56:30 +00:00
|
|
|
(substitute* "gpu/config/gpu_util.cc"
|
|
|
|
(("third_party/vulkan/include/")
|
|
|
|
""))
|
|
|
|
|
2019-08-03 21:24:07 +00:00
|
|
|
(substitute* '("components/viz/common/gpu/vulkan_context_provider.h"
|
2019-03-31 18:55:47 +00:00
|
|
|
"components/viz/common/resources/resource_format_utils.h")
|
2019-02-18 22:41:56 +00:00
|
|
|
(("third_party/vulkan/include/") ""))
|
|
|
|
|
2019-03-31 18:55:47 +00:00
|
|
|
(substitute* "third_party/skia/include/gpu/vk/GrVkVulkan.h"
|
2019-08-03 21:24:07 +00:00
|
|
|
(("include/third_party/vulkan/") ""))
|
2019-03-31 18:55:47 +00:00
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
;; Building chromedriver embeds some files using the ZIP
|
|
|
|
;; format which doesn't support timestamps before
|
|
|
|
;; 1980. Therefore, advance the timestamps of the files
|
|
|
|
;; which are included so that building chromedriver
|
|
|
|
;; works.
|
|
|
|
(let ((circa-1980 (* 10 366 24 60 60)))
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(utime file circa-1980 circa-1980))
|
|
|
|
'("chrome/test/chromedriver/extension/background.js"
|
|
|
|
"chrome/test/chromedriver/extension/manifest.json")))
|
|
|
|
|
|
|
|
#t))
|
2020-01-05 08:26:42 +00:00
|
|
|
(add-after 'patch-stuff 'add-absolute-references
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((cups (assoc-ref inputs "cups"))
|
|
|
|
(nss (assoc-ref inputs "nss"))
|
|
|
|
(mesa (assoc-ref inputs "mesa"))
|
|
|
|
(udev (assoc-ref inputs "udev")))
|
|
|
|
(substitute* "printing/cups_config_helper.py"
|
|
|
|
(("cups_config =.*")
|
|
|
|
(string-append "cups_config = '" cups
|
|
|
|
"/bin/cups-config'\n")))
|
|
|
|
(substitute* "crypto/nss_util.cc"
|
|
|
|
(("libnssckbi\\.so")
|
|
|
|
(string-append nss "/lib/nss/libnssckbi.so")))
|
|
|
|
(substitute* "device/udev_linux/udev1_loader.cc"
|
|
|
|
(("libudev\\.so\\.1")
|
|
|
|
(string-append udev "/lib/libudev.so.1")))
|
|
|
|
(substitute*
|
|
|
|
'("ui/ozone/platform/x11/gl_ozone_glx.cc"
|
|
|
|
"ui/ozone/common/egl_util.cc"
|
|
|
|
"ui/gl/init/gl_initializer_x11.cc"
|
|
|
|
"third_party/angle/src/libANGLE/renderer/gl/glx/FunctionsGLX.cpp")
|
|
|
|
(("libGL\\.so\\.1")
|
|
|
|
(string-append mesa "/lib/libGL.so.1"))
|
|
|
|
(("libEGL\\.so\\.1")
|
|
|
|
(string-append mesa "/lib/libEGL.so.1"))
|
|
|
|
(("libGLESv2\\.so\\.2")
|
|
|
|
(string-append mesa "/lib/libGLESv2.so.2")))
|
|
|
|
#t)))
|
2019-02-18 22:41:56 +00:00
|
|
|
(add-before 'configure 'prepare-build-environment
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
|
|
|
;; Make sure the right build tools are used.
|
|
|
|
(setenv "AR" "ar") (setenv "NM" "nm")
|
2020-02-24 21:56:30 +00:00
|
|
|
(setenv "CC" "clang") (setenv "CXX" "clang++")
|
2019-02-18 22:41:56 +00:00
|
|
|
|
2020-02-24 21:56:30 +00:00
|
|
|
;; Do not optimize away null pointer safety checks.
|
2019-08-03 21:24:07 +00:00
|
|
|
(setenv "CXXFLAGS" "-fno-delete-null-pointer-checks")
|
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
;; TODO: pre-compile instead. Avoids a race condition.
|
|
|
|
(setenv "PYTHONDONTWRITEBYTECODE" "1")
|
|
|
|
|
2020-02-24 21:56:30 +00:00
|
|
|
(substitute*
|
|
|
|
;; From Debians 'system/node.patch'.
|
|
|
|
"third_party/devtools-frontend/src/scripts/devtools_paths.py"
|
|
|
|
(("/usr/bin/nodejs") (which "node")))
|
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
;; XXX: How portable is this.
|
|
|
|
(mkdir-p "third_party/node/linux/node-linux-x64")
|
|
|
|
(symlink (string-append (assoc-ref inputs "node") "/bin")
|
|
|
|
"third_party/node/linux/node-linux-x64/bin")
|
|
|
|
|
|
|
|
#t))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key configure-flags #:allow-other-keys)
|
|
|
|
(let ((args (string-join configure-flags " ")))
|
|
|
|
;; Generate ninja build files.
|
|
|
|
(invoke "gn" "gen" "out/Release"
|
|
|
|
(string-append "--args=" args))
|
|
|
|
|
|
|
|
;; Print the full list of supported arguments as well as
|
|
|
|
;; their current status for convenience.
|
|
|
|
(format #t "Dumping configure flags...\n")
|
|
|
|
(invoke "gn" "args" "out/Release" "--list"))))
|
2019-11-18 14:25:07 +00:00
|
|
|
(add-before 'build 'increase-resource-limits
|
|
|
|
(lambda _
|
2019-11-15 16:47:02 +00:00
|
|
|
;; XXX: Chromiums linking step requires a lot of simultaneous file
|
|
|
|
;; accesses. Having a too low ulimit will result in bogus linker
|
|
|
|
;; errors such as "foo.a: error adding symbols: malformed archive".
|
|
|
|
|
2020-01-05 08:30:09 +00:00
|
|
|
;; Try increasing the soft resource limit of max open files to 2048,
|
2019-11-15 16:47:02 +00:00
|
|
|
;; or equal to the hard limit, whichever is lower.
|
|
|
|
(call-with-values (lambda () (getrlimit 'nofile))
|
|
|
|
(lambda (soft hard)
|
2020-01-05 08:30:09 +00:00
|
|
|
(when (and soft (< soft 2048))
|
2019-11-15 16:47:02 +00:00
|
|
|
(if hard
|
2020-01-05 08:30:09 +00:00
|
|
|
(setrlimit 'nofile (min hard 2048) hard)
|
|
|
|
(setrlimit 'nofile 2048 #f))
|
2019-11-15 16:47:02 +00:00
|
|
|
(format #t
|
|
|
|
"increased maximum number of open files from ~d to ~d~%"
|
2020-01-05 08:30:09 +00:00
|
|
|
soft (if hard (min hard 2048) 2048)))))
|
2019-11-18 14:25:07 +00:00
|
|
|
#t))
|
|
|
|
(replace 'build
|
|
|
|
(lambda* (#:key (parallel-build? #t) #:allow-other-keys)
|
2019-02-18 22:41:56 +00:00
|
|
|
(invoke "ninja" "-C" "out/Release"
|
2019-06-20 20:47:36 +00:00
|
|
|
"-j" (if parallel-build?
|
|
|
|
(number->string (parallel-job-count))
|
|
|
|
"1")
|
2019-02-18 22:41:56 +00:00
|
|
|
"chrome"
|
|
|
|
"chromedriver")))
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
(exe (string-append bin "/chromium"))
|
|
|
|
(lib (string-append out "/lib"))
|
|
|
|
(man (string-append out "/share/man/man1"))
|
|
|
|
(applications (string-append out "/share/applications"))
|
|
|
|
(install-regexp (make-regexp "\\.(bin|pak)$"))
|
|
|
|
(locales (string-append lib "/locales"))
|
|
|
|
(resources (string-append lib "/resources"))
|
|
|
|
(preferences (assoc-ref inputs "master-preferences"))
|
|
|
|
(gtk+ (assoc-ref inputs "gtk+"))
|
|
|
|
(sh (which "sh")))
|
|
|
|
|
|
|
|
(substitute* '("chrome/app/resources/manpage.1.in"
|
|
|
|
"chrome/installer/linux/common/desktop.template")
|
|
|
|
(("@@MENUNAME@@") "Chromium")
|
|
|
|
(("@@PACKAGE@@") "chromium")
|
|
|
|
(("/usr/bin/@@USR_BIN_SYMLINK_NAME@@") exe))
|
|
|
|
|
|
|
|
(mkdir-p man)
|
|
|
|
(copy-file "chrome/app/resources/manpage.1.in"
|
|
|
|
(string-append man "/chromium.1"))
|
|
|
|
|
|
|
|
(mkdir-p applications)
|
|
|
|
(copy-file "chrome/installer/linux/common/desktop.template"
|
|
|
|
(string-append applications "/chromium.desktop"))
|
|
|
|
|
|
|
|
(mkdir-p lib)
|
|
|
|
(copy-file preferences (string-append lib "/master_preferences"))
|
|
|
|
|
|
|
|
(with-directory-excursion "out/Release"
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(install-file file lib))
|
|
|
|
(scandir "." (cut regexp-exec install-regexp <>)))
|
|
|
|
(copy-file "chrome" (string-append lib "/chromium"))
|
|
|
|
|
|
|
|
(copy-recursively "locales" locales)
|
|
|
|
(copy-recursively "resources" resources)
|
|
|
|
|
|
|
|
(mkdir-p bin)
|
|
|
|
(symlink "../lib/chromium" exe)
|
|
|
|
(install-file "chromedriver" bin)
|
|
|
|
|
|
|
|
(wrap-program exe
|
|
|
|
;; Avoid file manager crash. See <https://bugs.gnu.org/26593>.
|
2019-06-18 19:55:30 +00:00
|
|
|
`("XDG_DATA_DIRS" ":" prefix (,(string-append gtk+ "/share")))))
|
|
|
|
|
|
|
|
(with-directory-excursion "chrome/app/theme/chromium"
|
|
|
|
(for-each
|
|
|
|
(lambda (size)
|
|
|
|
(let ((icons (string-append out "/share/icons/hicolor/"
|
|
|
|
size "x" size "/apps")))
|
|
|
|
(mkdir-p icons)
|
|
|
|
(copy-file (string-append "product_logo_" size ".png")
|
|
|
|
(string-append icons "/chromium.png"))))
|
2019-11-15 16:47:02 +00:00
|
|
|
'("24" "48" "64" "128" "256")))
|
2019-06-18 19:55:30 +00:00
|
|
|
#t))))))
|
2019-02-18 22:41:56 +00:00
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
2020-02-24 21:56:30 +00:00
|
|
|
("clang" ,clang-9)
|
2019-02-18 22:41:56 +00:00
|
|
|
("gn" ,gn)
|
|
|
|
("gperf" ,gperf)
|
|
|
|
("ninja" ,ninja)
|
|
|
|
("node" ,node)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("which" ,which)
|
|
|
|
("yasm" ,yasm)
|
|
|
|
|
|
|
|
;; This file contains defaults for new user profiles.
|
|
|
|
("master-preferences" ,(local-file "aux-files/chromium/master-preferences.json"))
|
|
|
|
|
|
|
|
("python-beautifulsoup4" ,python2-beautifulsoup4)
|
|
|
|
("python-html5lib" ,python2-html5lib)
|
|
|
|
("python" ,python-2)))
|
|
|
|
(inputs
|
|
|
|
`(("alsa-lib" ,alsa-lib)
|
|
|
|
("atk" ,atk)
|
|
|
|
("cups" ,cups)
|
|
|
|
("curl" ,curl)
|
|
|
|
("dbus" ,dbus)
|
|
|
|
("dbus-glib" ,dbus-glib)
|
|
|
|
("expat" ,expat)
|
|
|
|
("flac" ,flac)
|
|
|
|
("ffmpeg" ,ffmpeg)
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("gdk-pixbuf" ,gdk-pixbuf)
|
|
|
|
("glib" ,glib)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("harfbuzz" ,harfbuzz)
|
2019-07-02 18:21:13 +00:00
|
|
|
("icu4c" ,icu4c)
|
2019-02-18 22:41:56 +00:00
|
|
|
("jsoncpp" ,jsoncpp)
|
|
|
|
("lcms" ,lcms)
|
|
|
|
("libevent" ,libevent)
|
|
|
|
("libffi" ,libffi)
|
|
|
|
("libjpeg-turbo" ,libjpeg-turbo)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libva" ,libva)
|
2020-01-21 20:18:11 +00:00
|
|
|
("libvpx" ,libvpx)
|
2019-02-18 22:41:56 +00:00
|
|
|
("libwebp" ,libwebp)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("libxcomposite" ,libxcomposite)
|
|
|
|
("libxcursor" ,libxcursor)
|
|
|
|
("libxdamage" ,libxdamage)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("libxi" ,libxi)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
("libxscrnsaver" ,libxscrnsaver)
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
("libxtst" ,libxtst)
|
|
|
|
("mesa" ,mesa)
|
|
|
|
("minizip" ,minizip)
|
|
|
|
("mit-krb5" ,mit-krb5)
|
|
|
|
("nss" ,nss)
|
|
|
|
("openh264" ,openh264)
|
|
|
|
("openjpeg" ,openjpeg) ;PDFium only
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("opus" ,opus+custom)
|
|
|
|
("pango" ,pango)
|
|
|
|
("pciutils" ,pciutils)
|
|
|
|
("pulseaudio" ,pulseaudio)
|
|
|
|
("re2" ,re2)
|
|
|
|
("snappy" ,snappy)
|
|
|
|
("speech-dispatcher" ,speech-dispatcher)
|
|
|
|
("udev" ,eudev)
|
|
|
|
("valgrind" ,valgrind)
|
|
|
|
("vulkan-headers" ,vulkan-headers)))
|
2019-06-21 09:05:05 +00:00
|
|
|
|
2019-07-09 22:54:29 +00:00
|
|
|
;; Building Chromium takes ... a very long time. On a single core, a busy
|
|
|
|
;; mid-end x86 system may need more than 24 hours to complete the build.
|
2020-03-06 13:37:39 +00:00
|
|
|
(properties '((timeout . 144000) ;40 hours
|
|
|
|
;; The linking step may take more than an hour on some hardware.
|
|
|
|
(max-silent-time . 7200)))
|
2019-06-21 09:05:05 +00:00
|
|
|
|
2019-02-18 22:41:56 +00:00
|
|
|
(home-page "https://github.com/Eloston/ungoogled-chromium")
|
|
|
|
(description
|
|
|
|
"Ungoogled-Chromium is the Chromium web browser, with some functionality
|
|
|
|
disabled in order to protect the users privacy.")
|
|
|
|
;; Chromium is developed as BSD-3, but bundles a large number of third-party
|
|
|
|
;; components with other licenses. For full information, see chrome://credits.
|
|
|
|
(license (list license:bsd-3
|
|
|
|
license:bsd-2
|
|
|
|
license:expat
|
|
|
|
license:asl2.0
|
|
|
|
license:mpl1.1
|
|
|
|
license:mpl2.0
|
|
|
|
license:public-domain
|
|
|
|
license:isc
|
|
|
|
(license:non-copyleft "chrome://credits"
|
|
|
|
"See chrome://credits for more information.")
|
|
|
|
license:lgpl2.1+))))
|
2019-07-17 14:30:23 +00:00
|
|
|
|
|
|
|
(define-public ungoogled-chromium/wayland
|
|
|
|
(package/inherit ungoogled-chromium
|
|
|
|
(name "ungoogled-chromium-wayland")
|
|
|
|
(inputs
|
|
|
|
`(("wayland" ,wayland)
|
|
|
|
("wayland-protocols" ,wayland-protocols)
|
2019-11-15 16:47:02 +00:00
|
|
|
,@(package-inputs ungoogled-chromium)))
|
2019-07-17 14:30:23 +00:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments ungoogled-chromium)
|
2020-02-25 15:14:54 +00:00
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
|
|
|
(add-after 'unpack 'add-ozone-patch
|
|
|
|
(lambda _
|
|
|
|
;; Add missing include statement required when using libstdc++,
|
|
|
|
;; Clang and Ozone. Fixed in M81.
|
|
|
|
(substitute* "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.cc"
|
|
|
|
(("#include \"base/logging\\.h" all)
|
|
|
|
(string-append "#include <algorithm>\n" all)))
|
|
|
|
#t))))
|
2019-07-17 14:30:23 +00:00
|
|
|
((#:configure-flags flags)
|
|
|
|
`(append (list "use_ozone=true"
|
|
|
|
"ozone_platform_wayland=true"
|
|
|
|
"ozone_auto_platforms=false"
|
2020-01-21 20:18:11 +00:00
|
|
|
"ozone_platform=\"wayland\""
|
2019-07-17 14:30:23 +00:00
|
|
|
"use_xkbcommon=true"
|
|
|
|
"use_system_minigbm=true"
|
|
|
|
"use_system_libwayland=true"
|
|
|
|
(string-append "system_wayland_scanner_path=\""
|
|
|
|
(assoc-ref %build-inputs "wayland")
|
|
|
|
"/bin/wayland-scanner\""))
|
|
|
|
(delete "use_vaapi=true" ,flags)))))))
|