2015-04-19 09:58:49 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
2015-05-05 06:48:28 +00:00
|
|
|
|
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
2015-05-06 06:38:06 +00:00
|
|
|
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
2021-11-03 06:41:23 +00:00
|
|
|
|
;;; Copyright © 2015–2021 Mark H Weaver <mhw@netris.org>
|
2021-03-21 16:24:32 +00:00
|
|
|
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-11-09 18:18:55 +00:00
|
|
|
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
2019-09-26 14:38:20 +00:00
|
|
|
|
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
2022-04-02 03:03:15 +00:00
|
|
|
|
;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2022-08-28 11:47:14 +00:00
|
|
|
|
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
|
2015-04-19 09:58:49 +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 webkit)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2022-04-02 03:03:15 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2018-09-22 23:17:29 +00:00
|
|
|
|
#:use-module (guix utils)
|
2021-10-31 06:33:50 +00:00
|
|
|
|
#:use-module (guix build utils)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2022-01-16 07:29:04 +00:00
|
|
|
|
#:use-module (guix build-system meson)
|
2015-05-06 06:38:06 +00:00
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module (gnu packages base)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages bison)
|
2020-07-13 07:44:32 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
2018-11-09 18:18:55 +00:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages enchant)
|
2015-05-06 06:38:06 +00:00
|
|
|
|
#:use-module (gnu packages flex)
|
2020-07-13 07:44:32 +00:00
|
|
|
|
#:use-module (gnu packages fontutils)
|
2019-09-26 14:39:31 +00:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2022-04-02 03:03:15 +00:00
|
|
|
|
#:use-module (gnu packages games)
|
2018-09-22 23:17:29 +00:00
|
|
|
|
#:use-module (gnu packages gcc)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2021-11-03 06:41:23 +00:00
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2017-03-27 16:53:09 +00:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages gperf)
|
|
|
|
|
#:use-module (gnu packages gstreamer)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
|
#:use-module (gnu packages icu4c)
|
|
|
|
|
#:use-module (gnu packages image)
|
2016-01-08 08:39:23 +00:00
|
|
|
|
#:use-module (gnu packages libreoffice)
|
2019-09-26 14:40:45 +00:00
|
|
|
|
#:use-module (gnu packages linux)
|
2021-11-03 06:41:23 +00:00
|
|
|
|
#:use-module (gnu packages llvm)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
|
#:use-module (gnu packages python)
|
|
|
|
|
#:use-module (gnu packages ruby)
|
gnu: Move sqlite to separate module.
* gnu/packages/databases.scm (sqlite, sqlite-3.26.0, sqlite-with-fts5,
sqlite-with-column-metadata): Move variables from here...
* gnu/packages/sqlite.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/apl.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/code.scm,
gnu/packages/crypto.scm,
gnu/packages/databases.scm,
gnu/packages/dc.scm,
gnu/packages/disk.scm,
gnu/packages/ebook.scm,
gnu/packages/education.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/file-systems.scm,
gnu/packages/freedesktop.scm,
gnu/packages/ftp.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gnome.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/gps.scm,
gnu/packages/guile.scm,
gnu/packages/ibus.scm,
gnu/packages/kerberos.scm,
gnu/packages/kodi.scm,
gnu/packages/lisp.scm,
gnu/packages/mail.scm,
gnu/packages/messaging.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nfs.scm,
gnu/packages/ocaml.scm,
gnu/packages/package-management.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/php.scm,
gnu/packages/python.scm,
gnu/packages/qt.scm,
gnu/packages/ruby.scm,
gnu/packages/scheme.scm,
gnu/packages/sync.scm,
gnu/packages/syndication.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/web-browsers.scm,
gnu/packages/webkit.scm: Adjust module references.
2019-01-15 20:47:05 +00:00
|
|
|
|
#:use-module (gnu packages sqlite)
|
2017-09-15 17:11:23 +00:00
|
|
|
|
#:use-module (gnu packages tls)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages video)
|
2019-09-26 14:40:45 +00:00
|
|
|
|
#:use-module (gnu packages virtualization)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages xml)
|
2019-09-26 14:38:20 +00:00
|
|
|
|
#:use-module (gnu packages xdisorg)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
#:use-module (gnu packages xorg))
|
|
|
|
|
|
2019-09-26 14:38:20 +00:00
|
|
|
|
(define-public libwpe
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpe")
|
2022-01-16 07:29:04 +00:00
|
|
|
|
(version "1.12.0")
|
2020-07-13 05:48:50 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(string-append "https://wpewebkit.org/releases/libwpe-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
2022-01-16 07:29:04 +00:00
|
|
|
|
(base32 "13618imck69w7fbmljlh62j4gnlspb9zfqzv9hlkck3bi8icmvp8"))))
|
|
|
|
|
(build-system meson-build-system)
|
2019-09-26 14:38:20 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
2020-07-13 05:48:50 +00:00
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("python" ,python-wrapper)))
|
2019-09-26 14:38:20 +00:00
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list mesa))
|
2019-09-26 14:38:20 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list libxkbcommon))
|
2020-07-13 05:48:50 +00:00
|
|
|
|
(synopsis "General-purpose library for WPE")
|
|
|
|
|
(description "LibWPE is general-purpose library specifically developed for
|
|
|
|
|
the WPE-flavored port of WebKit.")
|
2019-09-26 14:38:20 +00:00
|
|
|
|
(home-page "https://wpewebkit.org/")
|
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
|
2019-09-26 14:39:31 +00:00
|
|
|
|
(define-public wpebackend-fdo
|
|
|
|
|
(package
|
|
|
|
|
(name "wpebackend-fdo")
|
2022-01-16 07:29:56 +00:00
|
|
|
|
(version "1.12.0")
|
2019-09-26 14:39:31 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://wpewebkit.org/releases/"
|
|
|
|
|
"wpebackend-fdo-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-01-16 07:29:56 +00:00
|
|
|
|
"1b3l02dns1yxw3rq18cv00qan4hp95mxw5b3ssc0fh93ap0wjfb2"))))
|
|
|
|
|
(build-system meson-build-system)
|
2019-09-26 14:39:31 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list pkg-config))
|
2019-09-26 14:39:31 +00:00
|
|
|
|
(inputs
|
2022-01-16 07:29:56 +00:00
|
|
|
|
(list glib libepoxy libwpe mesa wayland))
|
2019-09-26 14:39:31 +00:00
|
|
|
|
(home-page "https://wpewebkit.org/")
|
|
|
|
|
(synopsis "Wayland WPE backend")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a backend implementation for the WPE WebKit
|
|
|
|
|
engine that uses Wayland for graphics output.")
|
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
|
2022-09-11 18:55:37 +00:00
|
|
|
|
(define %webkit-version "2.36.7") ;webkit2gtk4
|
2020-07-13 07:44:32 +00:00
|
|
|
|
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(define-public webkitgtk
|
|
|
|
|
(package
|
|
|
|
|
(name "webkitgtk")
|
2022-04-04 02:23:33 +00:00
|
|
|
|
(version %webkit-version)
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-08-25 04:18:42 +00:00
|
|
|
|
(uri (string-append "https://www.webkitgtk.org/releases/"
|
2022-04-04 02:23:33 +00:00
|
|
|
|
name "-" version ".tar.xz"))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(sha256
|
2022-08-28 11:47:14 +00:00
|
|
|
|
(base32 "0hqpfgzbb7lzdih9aw86rmkljm8ynv8zw3b72z88211gngr0q9hc"))
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(patches (search-patches
|
|
|
|
|
"webkitgtk-adjust-bubblewrap-paths.patch"))))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(build-system cmake-build-system)
|
2021-10-17 09:12:11 +00:00
|
|
|
|
(outputs '("out" "doc" "debug"))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(arguments
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(list
|
|
|
|
|
;; The release archive doesn't include the resources/sources needed to
|
|
|
|
|
;; run the various regression tests.
|
|
|
|
|
#:tests? #f
|
|
|
|
|
;; When building using the default RelWithDebInfo build type, the final
|
|
|
|
|
;; binaries require 20 GiB of memory to link (even with ld.gold or lld)
|
|
|
|
|
;; and produce 4.6 GiB of debug symbols.
|
|
|
|
|
#:build-type "Release"
|
|
|
|
|
#:configure-flags #~(list
|
|
|
|
|
"-DPORT=GTK"
|
|
|
|
|
;; GTKDOC will be removed upstream soon in favor of
|
|
|
|
|
;; gi-docgen; it is normally disabled because the
|
|
|
|
|
;; doc is rather expensive to build.
|
|
|
|
|
"-DENABLE_GTKDOC=ON"
|
|
|
|
|
;; The minibrowser, not built by default, is a good
|
|
|
|
|
;; tool to validate the good operation of
|
|
|
|
|
;; webkitgtk.
|
|
|
|
|
"-DENABLE_MINIBROWSER=ON"
|
|
|
|
|
;; The default lib installation prefix is lib64.
|
|
|
|
|
(string-append "-DLIB_INSTALL_DIR=" #$output "/lib"))
|
|
|
|
|
;; The build may fail with -j1 (see:
|
|
|
|
|
;; https://bugs.webkit.org/show_bug.cgi?id=195251).
|
|
|
|
|
#:make-flags #~(list "-j" (number->string (max 2 (parallel-job-count))))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'configure-bubblewrap-store-directory
|
|
|
|
|
(lambda _
|
|
|
|
|
;; This phase works in tandem with
|
|
|
|
|
;; webkitgtk-adjust-bubblewrap-paths.patch and avoids hard
|
|
|
|
|
;; coding /gnu/store, for users with other prefixes.
|
|
|
|
|
(let ((store-directory (%store-directory)))
|
|
|
|
|
(substitute*
|
|
|
|
|
"Source/WebKit/UIProcess/Launcher/glib/BubblewrapLauncher.cpp"
|
|
|
|
|
(("@storedir@") store-directory)))))
|
|
|
|
|
(add-after 'unpack 'do-not-disable-new-dtags
|
|
|
|
|
;; Ensure the linker uses new dynamic tags as this is what Guix
|
|
|
|
|
;; uses and validates in the validate-runpath phase.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Source/cmake/OptionsCommon.cmake"
|
|
|
|
|
(("if \\(LD_SUPPORTS_DISABLE_NEW_DTAGS\\)")
|
|
|
|
|
"if (FALSE)"))))
|
|
|
|
|
(add-after 'unpack 'help-cmake-find-elogind
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Source/cmake/FindJournald.cmake"
|
|
|
|
|
;; Otherwise, CMake would throw an error because it relies on
|
|
|
|
|
;; the pkg-config search to locate headers.
|
|
|
|
|
(("pkg_check_modules\\(PC_SYSTEMD QUIET libsystemd")
|
|
|
|
|
"pkg_check_modules(PC_SYSTEMD QUIET libelogind"))))
|
|
|
|
|
(add-after 'unpack 'patch-gtk-doc-scan
|
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
|
|
|
|
(substitute* (find-files "Source" "\\.sgml$")
|
|
|
|
|
(("http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd")
|
|
|
|
|
(search-input-file (or native-inputs inputs)
|
|
|
|
|
"xml/dtd/docbook/docbookx.dtd")))))
|
|
|
|
|
(add-after 'unpack 'embed-absolute-wpebackend-reference
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((wpebackend-fdo (assoc-ref inputs "wpebackend-fdo")))
|
|
|
|
|
(substitute* "Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp"
|
|
|
|
|
(("libWPEBackend-fdo-[\\.0-9]+\\.so" all)
|
|
|
|
|
(search-input-file inputs (string-append "lib/" all)))))))
|
|
|
|
|
#$@(if (target-x86-64?)
|
|
|
|
|
'()
|
|
|
|
|
'((add-after 'unpack 'disable-sse2
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Source/cmake/WebKitCompilerFlags.cmake"
|
|
|
|
|
(("WTF_CPU_X86 AND NOT CMAKE_CROSSCOMPILING")
|
|
|
|
|
"FALSE"))))))
|
|
|
|
|
(add-after 'install 'move-doc-files
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((doc (assoc-ref outputs "doc")))
|
|
|
|
|
(mkdir-p (string-append doc "/share"))
|
|
|
|
|
(rename-file (string-append #$output "/share/gtk-doc")
|
|
|
|
|
(string-append doc "/share/gtk-doc"))))))))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(native-inputs
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(list bison
|
|
|
|
|
gettext-minimal
|
|
|
|
|
`(,glib "bin") ;for glib-mkenums, etc.
|
|
|
|
|
gobject-introspection
|
|
|
|
|
gperf
|
|
|
|
|
perl
|
|
|
|
|
pkg-config
|
|
|
|
|
python-wrapper
|
|
|
|
|
;; These are required to build the documentation.
|
|
|
|
|
gtk-doc/stable
|
|
|
|
|
docbook-xml
|
|
|
|
|
ruby))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list gtk+ libsoup))
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(inputs
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(list at-spi2-core
|
|
|
|
|
bubblewrap
|
|
|
|
|
elogind
|
|
|
|
|
enchant
|
|
|
|
|
geoclue
|
|
|
|
|
gst-plugins-base
|
2022-06-28 19:19:18 +00:00
|
|
|
|
gst-plugins-bad-minimal
|
2022-04-02 03:03:15 +00:00
|
|
|
|
gtk+-2
|
|
|
|
|
harfbuzz
|
|
|
|
|
hyphen
|
|
|
|
|
icu4c
|
|
|
|
|
lcms
|
|
|
|
|
libgcrypt
|
2022-06-28 19:19:18 +00:00
|
|
|
|
libgudev
|
2022-04-02 03:03:15 +00:00
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libmanette
|
|
|
|
|
libnotify
|
|
|
|
|
libpng
|
|
|
|
|
libseccomp
|
|
|
|
|
libsecret
|
|
|
|
|
libtasn1
|
|
|
|
|
libwebp
|
|
|
|
|
libwpe
|
|
|
|
|
libxcomposite
|
|
|
|
|
libxml2
|
|
|
|
|
libxslt
|
|
|
|
|
libxt
|
|
|
|
|
mesa
|
|
|
|
|
openjpeg
|
|
|
|
|
sqlite
|
|
|
|
|
woff2
|
|
|
|
|
wpebackend-fdo
|
|
|
|
|
xdg-dbus-proxy))
|
2022-08-28 00:00:00 +00:00
|
|
|
|
(properties '((timeout . 144000))) ; 40 hours, most notably for aarch64
|
2018-03-14 09:36:44 +00:00
|
|
|
|
(home-page "https://www.webkitgtk.org/")
|
2015-04-19 09:58:49 +00:00
|
|
|
|
(synopsis "Web content engine for GTK+")
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(description "WebKitGTK+ is a full-featured port of the WebKit rendering engine,
|
2015-04-19 09:58:49 +00:00
|
|
|
|
suitable for projects requiring any kind of web integration, from hybrid
|
2021-12-21 16:25:23 +00:00
|
|
|
|
HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing
|
|
|
|
|
capabilities can be extended through the use of GStreamer plugins (not
|
|
|
|
|
propagated by default) such as @code{gst-plugins-good} and
|
|
|
|
|
@code{gst-plugins-bad}.")
|
2015-04-19 09:58:49 +00:00
|
|
|
|
;; WebKit's JavaScriptCore and WebCore components are available under
|
|
|
|
|
;; the GNU LGPL, while the rest is available under a BSD-style license.
|
|
|
|
|
(license (list license:lgpl2.0
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:bsd-2
|
|
|
|
|
license:bsd-3))))
|
2021-10-31 06:33:50 +00:00
|
|
|
|
|
2022-09-11 18:55:37 +00:00
|
|
|
|
(define-public webkitgtk-next
|
|
|
|
|
(package
|
|
|
|
|
(inherit webkitgtk)
|
|
|
|
|
(name "webkitgtk")
|
2022-09-27 19:38:23 +00:00
|
|
|
|
(version "2.38.0") ;webkit2gtk5
|
2022-09-11 18:55:37 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(inherit (package-source webkitgtk))
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.webkitgtk.org/releases/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
2022-09-27 19:38:23 +00:00
|
|
|
|
(base32 "1g8gpi1scbmbcywkfjr2srxdq9r63s94d7v01fdk5qdnldsn7kpr"))))
|
2022-09-11 18:55:37 +00:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments webkitgtk)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
#~(cons* "-DENABLE_INTROSPECTION=ON"
|
|
|
|
|
"-DUSE_GTK4=ON"
|
|
|
|
|
(delete "-DENABLE_GTKDOC=ON" #$flags)))
|
|
|
|
|
((#:phases phases)
|
|
|
|
|
#~(modify-phases #$phases
|
|
|
|
|
(add-before 'build 'set-CC
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Some Perl scripts check for the CC environment variable, else
|
|
|
|
|
;; use /usr/bin/gcc.
|
|
|
|
|
(setenv "CC" "gcc")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(modify-inputs (package-native-inputs webkitgtk)
|
|
|
|
|
(delete "docbook-xml" "gtk-doc")
|
|
|
|
|
(append gi-docgen)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
(modify-inputs (package-propagated-inputs webkitgtk)
|
|
|
|
|
(replace "gtk+" gtk)))
|
|
|
|
|
(inputs
|
|
|
|
|
(modify-inputs (package-inputs webkitgtk)
|
|
|
|
|
(delete "gtk+-2" "libnotify")
|
|
|
|
|
(append pango-next))))) ;TODO: remove after it's the default
|
|
|
|
|
|
gnu: gnome-online-accounts: Update to 3.45.2, remove "lib" output.
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.45.2.
[build-system]: Use meson-build-system.
[glib-or-gtk?]: New argument.
[phases]{patch-libgoa-output}: Delete phase.
{disable-gtk-update-icon-cache}: New phase.
[native-inputs]: Add gettext-minimal.
[inputs]: Replace rest with rest-next; replace webkitgtk-with-libsoup2 with
webkitgtk. Add gcr and mit-krb5.
(gnome-recipes): Adjust for the removed gnome-online-accounts output.
(gnome-music, gnome-online-miners, gnome-initial-setup): Likewise.
(libgdata, gnome-contacts, grilo-plugins, evolution-data-server)
(gnome-shell, gnome-todo, gnome-calendar, gnome-shell-extensions)
(gnome-calculator, gnome-latex): Likewise.
(gnome-online-accounts-3.44): New variable.
* gnu/packages/geo.scm (gnome-maps): Likewise.
* gnu/packages/webkit.scm: Update comment.
2022-09-05 03:02:11 +00:00
|
|
|
|
;;; Required by e.g. emacs-next-pgtk, emacs-xwidgets, and some other GNOME
|
|
|
|
|
;;; packages for webkit2gtk-4.0. See also the upstream tracker for libsoup 3:
|
|
|
|
|
;;; https://gitlab.gnome.org/GNOME/libsoup/-/issues/218.
|
2021-10-31 06:33:50 +00:00
|
|
|
|
(define-public webkitgtk-with-libsoup2
|
|
|
|
|
(package/inherit webkitgtk
|
|
|
|
|
(name "webkitgtk-with-libsoup2")
|
|
|
|
|
(arguments (substitute-keyword-arguments (package-arguments webkitgtk)
|
|
|
|
|
((#:configure-flags flags)
|
2022-04-02 03:03:15 +00:00
|
|
|
|
#~(cons "-DUSE_SOUP2=ON" #$flags))))
|
2021-10-31 06:33:50 +00:00
|
|
|
|
(propagated-inputs
|
2022-04-02 03:03:15 +00:00
|
|
|
|
(modify-inputs (package-propagated-inputs webkitgtk)
|
|
|
|
|
(replace "libsoup" libsoup-minimal-2)))))
|
2022-04-04 02:23:33 +00:00
|
|
|
|
|
|
|
|
|
(define-public wpewebkit
|
|
|
|
|
(package
|
|
|
|
|
(inherit webkitgtk)
|
|
|
|
|
(name "wpewebkit")
|
|
|
|
|
(version %webkit-version)
|
|
|
|
|
(source (origin
|
|
|
|
|
(inherit (package-source webkitgtk))
|
|
|
|
|
(uri (string-append "https://wpewebkit.org/releases/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
2022-08-28 11:47:14 +00:00
|
|
|
|
(base32 "1jcm5fjzn1k9l87qwqgmvd5qriwpv3vgs632zc6asqn5zxr7sx7k"))))
|
2022-04-04 02:23:33 +00:00
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments webkitgtk)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
#~(cons "-DPORT=WPE"
|
|
|
|
|
(delete "-DPORT=GTK" #$flags)))))
|
|
|
|
|
(synopsis "WebKit port optimized for embedded devices")
|
|
|
|
|
(description "WPE WebKit allows embedders to create simple and performant
|
|
|
|
|
systems based on Web platform technologies. It is designed with hardware
|
|
|
|
|
acceleration in mind, leveraging common 3D graphics APIs for best performance.")
|
|
|
|
|
(home-page "https://wpewebkit.org/")
|
|
|
|
|
(properties '((cpe-name . "wpe_webkit")))))
|