2015-04-19 05:58:49 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
2015-05-05 02:48:28 -04:00
|
|
|
|
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
2015-05-06 02:38:06 -04:00
|
|
|
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
2021-11-03 02:41:23 -04:00
|
|
|
|
;;; Copyright © 2015–2021 Mark H Weaver <mhw@netris.org>
|
2021-03-21 12:24:32 -04:00
|
|
|
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-11-09 13:18:55 -05:00
|
|
|
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
2019-09-26 10:38:20 -04:00
|
|
|
|
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
2023-03-25 09:19:30 -04:00
|
|
|
|
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2023-01-08 03:31:21 -05:00
|
|
|
|
;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
|
2015-04-19 05:58:49 -04: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-01 23:03:15 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2018-09-22 19:17:29 -04:00
|
|
|
|
#:use-module (guix utils)
|
2021-10-31 02:33:50 -04:00
|
|
|
|
#:use-module (guix build utils)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2022-01-16 02:29:04 -05:00
|
|
|
|
#:use-module (guix build-system meson)
|
2015-05-06 02:38:06 -04:00
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module (gnu packages base)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages bison)
|
2023-03-25 09:19:30 -04:00
|
|
|
|
#:use-module (gnu packages c)
|
2020-07-13 03:44:32 -04:00
|
|
|
|
#:use-module (gnu packages compression)
|
2018-11-09 13:18:55 -05:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages enchant)
|
2015-05-06 02:38:06 -04:00
|
|
|
|
#:use-module (gnu packages flex)
|
2020-07-13 03:44:32 -04:00
|
|
|
|
#:use-module (gnu packages fontutils)
|
2019-09-26 10:39:31 -04:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2022-04-01 23:03:15 -04:00
|
|
|
|
#:use-module (gnu packages games)
|
2018-09-22 19:17:29 -04:00
|
|
|
|
#:use-module (gnu packages gcc)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2021-11-03 02:41:23 -04:00
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2017-03-27 12:53:09 -04:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2015-04-19 05:58:49 -04: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 03:39:23 -05:00
|
|
|
|
#:use-module (gnu packages libreoffice)
|
2019-09-26 10:40:45 -04:00
|
|
|
|
#:use-module (gnu packages linux)
|
2021-11-03 02:41:23 -04:00
|
|
|
|
#:use-module (gnu packages llvm)
|
2015-04-19 05:58:49 -04: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 15:47:05 -05:00
|
|
|
|
#:use-module (gnu packages sqlite)
|
2017-09-15 13:11:23 -04:00
|
|
|
|
#:use-module (gnu packages tls)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages video)
|
2019-09-26 10:40:45 -04:00
|
|
|
|
#:use-module (gnu packages virtualization)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages xml)
|
2019-09-26 10:38:20 -04:00
|
|
|
|
#:use-module (gnu packages xdisorg)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages xorg))
|
|
|
|
|
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(define-public libwpe
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpe")
|
2022-01-16 02:29:04 -05:00
|
|
|
|
(version "1.12.0")
|
2020-07-13 01:48:50 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(string-append "https://wpewebkit.org/releases/libwpe-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
2022-01-16 02:29:04 -05:00
|
|
|
|
(base32 "13618imck69w7fbmljlh62j4gnlspb9zfqzv9hlkck3bi8icmvp8"))))
|
|
|
|
|
(build-system meson-build-system)
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
2020-07-13 01:48:50 -04:00
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("python" ,python-wrapper)))
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list mesa))
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libxkbcommon))
|
2020-07-13 01:48:50 -04: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 10:38:20 -04:00
|
|
|
|
(home-page "https://wpewebkit.org/")
|
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(define-public wpebackend-fdo
|
|
|
|
|
(package
|
|
|
|
|
(name "wpebackend-fdo")
|
2022-01-16 02:29:56 -05:00
|
|
|
|
(version "1.12.0")
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://wpewebkit.org/releases/"
|
|
|
|
|
"wpebackend-fdo-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-01-16 02:29:56 -05:00
|
|
|
|
"1b3l02dns1yxw3rq18cv00qan4hp95mxw5b3ssc0fh93ap0wjfb2"))))
|
|
|
|
|
(build-system meson-build-system)
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(inputs
|
2022-01-16 02:29:56 -05:00
|
|
|
|
(list glib libepoxy libwpe mesa wayland))
|
2019-09-26 10:39:31 -04: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)))
|
|
|
|
|
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(define-public webkitgtk
|
|
|
|
|
(package
|
2023-01-16 12:02:01 -05:00
|
|
|
|
(name "webkitgtk") ; webkit2gtk4
|
2023-08-04 11:51:03 -04:00
|
|
|
|
(version "2.40.5")
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-08-25 00:18:42 -04:00
|
|
|
|
(uri (string-append "https://www.webkitgtk.org/releases/"
|
2022-04-03 22:23:33 -04:00
|
|
|
|
name "-" version ".tar.xz"))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(sha256
|
2023-08-04 11:51:03 -04:00
|
|
|
|
(base32 "0zq32rn34v7hzr53s100r77aglbi6wffp9b13bcj31k6cfi53q3x"))
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(patches (search-patches
|
2023-04-21 00:39:31 -04:00
|
|
|
|
"webkitgtk-adjust-bubblewrap-paths.patch"))))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2021-10-17 05:12:11 -04:00
|
|
|
|
(outputs '("out" "doc" "debug"))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(arguments
|
2022-04-01 23:03:15 -04: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"
|
2023-03-25 09:19:30 -04:00
|
|
|
|
#: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")
|
|
|
|
|
;; XXX: WebKitGTK makes use of elogind's systemd-compatible
|
|
|
|
|
;; headers, which are under the include/elogind prefix. The WTF
|
|
|
|
|
;; component doesn't propagate the Journald header correctly
|
|
|
|
|
;; detected (stubs from elogind), hence the following hack (see:
|
|
|
|
|
;; https://bugs.webkit.org/show_bug.cgi?id=254495).
|
|
|
|
|
(string-append "-DCMAKE_CXX_FLAGS=-I"
|
|
|
|
|
(search-input-directory
|
|
|
|
|
%build-inputs "include/elogind")))
|
2022-04-01 23:03:15 -04:00
|
|
|
|
;; 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
|
2023-01-16 12:02:01 -05:00
|
|
|
|
(add-before 'build 'set-CC
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Some Perl scripts check for the CC environment variable, else
|
|
|
|
|
;; use /usr/bin/gcc.
|
|
|
|
|
(setenv "CC" #$(cc-for-target))))
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(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 '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)))))))
|
2023-07-10 03:17:31 -04:00
|
|
|
|
#$@(if (target-x86-32?)
|
|
|
|
|
;; Don't include x86intrin.h on i686-linux.
|
|
|
|
|
'((add-after 'unpack 'fix-headers
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Source/ThirdParty/ANGLE/src/common/platform.h"
|
|
|
|
|
(("\\|\\| defined\\(__i386__\\)") "")))))
|
|
|
|
|
'())
|
2022-04-01 23:03:15 -04:00
|
|
|
|
#$@(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 05:58:49 -04:00
|
|
|
|
(native-inputs
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(list bison
|
|
|
|
|
gettext-minimal
|
|
|
|
|
`(,glib "bin") ;for glib-mkenums, etc.
|
|
|
|
|
gobject-introspection
|
|
|
|
|
gperf
|
|
|
|
|
perl
|
|
|
|
|
pkg-config
|
|
|
|
|
python-wrapper
|
2023-01-16 12:02:01 -05:00
|
|
|
|
gi-docgen
|
2023-06-17 05:44:06 -04:00
|
|
|
|
ruby-2.7
|
2023-03-25 09:19:30 -04:00
|
|
|
|
unifdef))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gtk+ libsoup))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(inputs
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(list at-spi2-core
|
|
|
|
|
bubblewrap
|
|
|
|
|
elogind
|
|
|
|
|
enchant
|
|
|
|
|
geoclue
|
|
|
|
|
gst-plugins-base
|
2022-06-28 15:19:18 -04:00
|
|
|
|
gst-plugins-bad-minimal
|
2022-04-01 23:03:15 -04:00
|
|
|
|
harfbuzz
|
|
|
|
|
hyphen
|
|
|
|
|
icu4c
|
|
|
|
|
lcms
|
2023-03-25 09:19:30 -04:00
|
|
|
|
libavif
|
2022-04-01 23:03:15 -04:00
|
|
|
|
libgcrypt
|
2022-06-28 15:19:18 -04:00
|
|
|
|
libgudev
|
2022-04-01 23:03:15 -04: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-27 20:00:00 -04:00
|
|
|
|
(properties '((timeout . 144000))) ; 40 hours, most notably for aarch64
|
2018-03-14 05:36:44 -04:00
|
|
|
|
(home-page "https://www.webkitgtk.org/")
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(synopsis "Web content engine for GTK+")
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(description "WebKitGTK+ is a full-featured port of the WebKit rendering engine,
|
2015-04-19 05:58:49 -04:00
|
|
|
|
suitable for projects requiring any kind of web integration, from hybrid
|
2021-12-21 11:25:23 -05: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 05:58:49 -04: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 02:33:50 -04:00
|
|
|
|
|
2022-09-11 14:55:37 -04:00
|
|
|
|
(define-public webkitgtk-next
|
|
|
|
|
(package
|
|
|
|
|
(inherit webkitgtk)
|
2023-01-16 12:02:01 -05:00
|
|
|
|
(name "webkitgtk-next") ; webkit2gtk5
|
2022-09-11 14:55:37 -04:00
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments webkitgtk)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
#~(cons* "-DENABLE_INTROSPECTION=ON"
|
|
|
|
|
"-DUSE_GTK4=ON"
|
2023-01-16 12:02:01 -05:00
|
|
|
|
(delete "-DENABLE_GTKDOC=ON" #$flags)))))
|
2022-09-11 14:55:37 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
(modify-inputs (package-propagated-inputs webkitgtk)
|
|
|
|
|
(replace "gtk+" gtk)))
|
|
|
|
|
(inputs
|
|
|
|
|
(modify-inputs (package-inputs webkitgtk)
|
2023-04-14 16:57:37 -04:00
|
|
|
|
(delete "libnotify")))))
|
2022-09-11 14:55:37 -04:00
|
|
|
|
|
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-04 23:02:11 -04: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 02:33:50 -04: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-01 23:03:15 -04:00
|
|
|
|
#~(cons "-DUSE_SOUP2=ON" #$flags))))
|
2021-10-31 02:33:50 -04:00
|
|
|
|
(propagated-inputs
|
2022-04-01 23:03:15 -04:00
|
|
|
|
(modify-inputs (package-propagated-inputs webkitgtk)
|
|
|
|
|
(replace "libsoup" libsoup-minimal-2)))))
|
2022-04-03 22:23:33 -04:00
|
|
|
|
|
|
|
|
|
(define-public wpewebkit
|
|
|
|
|
(package
|
|
|
|
|
(inherit webkitgtk)
|
|
|
|
|
(name "wpewebkit")
|
2023-10-13 06:55:59 -04:00
|
|
|
|
(version "2.40.5")
|
2022-04-03 22:23:33 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(inherit (package-source webkitgtk))
|
|
|
|
|
(uri (string-append "https://wpewebkit.org/releases/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
2023-10-13 06:55:59 -04:00
|
|
|
|
(base32 "0cv74qy67a0hg8sba18wrjcmmwkj4z23wqnn5yqrh3n594q8srac"))))
|
2022-04-03 22:23:33 -04: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")))))
|