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>
|
2020-04-13 16:36:51 -04:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org>
|
2019-11-06 16:17:03 -05:00
|
|
|
|
;;; Copyright © 2018, 2019 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>
|
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)
|
2018-09-22 19:17:29 -04:00
|
|
|
|
#:use-module (guix utils)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2015-05-06 02:38:06 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module (gnu packages base)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
#:use-module (gnu packages bison)
|
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)
|
2019-09-26 10:39:31 -04:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
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)
|
|
|
|
|
#: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)
|
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")
|
2020-03-19 02:48:45 -04:00
|
|
|
|
(version "1.6.0")
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://wpewebkit.org/releases/libwpe-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-03-19 02:48:45 -04:00
|
|
|
|
"141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm"))))
|
2019-09-26 10:38:20 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("mesa" ,mesa)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(;; In Requires of wpe-1.0.pc.
|
|
|
|
|
("libxkbcommon" ,libxkbcommon)))
|
|
|
|
|
(home-page "https://wpewebkit.org/")
|
|
|
|
|
(synopsis "Platform agnostic WebKit interfaces")
|
|
|
|
|
(description
|
|
|
|
|
"@code{libwpe} is a small library that defines programming interfaces
|
|
|
|
|
for use by WebKit, and provides a mechanism for loading a platform-specific
|
|
|
|
|
backend which implements them.")
|
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(define-public wpebackend-fdo
|
|
|
|
|
(package
|
|
|
|
|
(name "wpebackend-fdo")
|
2020-06-01 21:22:21 -04:00
|
|
|
|
(version "1.6.1")
|
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
|
2020-06-01 21:22:21 -04:00
|
|
|
|
"1jdi43gciqjgvhnqxs160f3hmp1hkqhrllb0hhmldyxc4wryw3kl"))))
|
2019-09-26 10:39:31 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;no tests
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("glib" ,glib)
|
|
|
|
|
("libwpe" ,libwpe)
|
|
|
|
|
("mesa" ,mesa)
|
|
|
|
|
("wayland" ,wayland)))
|
|
|
|
|
(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
|
|
|
|
|
(name "webkitgtk")
|
2020-04-24 17:08:44 -04:00
|
|
|
|
(version "2.28.2")
|
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/"
|
2019-11-06 13:31:15 -05:00
|
|
|
|
"webkitgtk-" version ".tar.xz"))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-04-25 22:03:48 -04:00
|
|
|
|
"1g9hik3bprki5s9d7y5288q5irwckbzajr6rnlvjrlnqrwjkblmr"))
|
|
|
|
|
(patches (search-patches "webkitgtk-share-store.patch"))))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2018-11-09 13:18:55 -05:00
|
|
|
|
(outputs '("out" "doc"))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ; no tests
|
|
|
|
|
#:build-type "Release" ; turn off debugging symbols to save space
|
2015-05-05 02:48:28 -04:00
|
|
|
|
#:configure-flags (list
|
|
|
|
|
"-DPORT=GTK"
|
2018-11-09 13:18:55 -05:00
|
|
|
|
"-DENABLE_GTKDOC=ON" ; No doc by default
|
2015-05-05 02:48:28 -04:00
|
|
|
|
(string-append ; uses lib64 by default
|
|
|
|
|
"-DLIB_INSTALL_DIR="
|
2017-09-15 13:11:23 -04:00
|
|
|
|
(assoc-ref %outputs "out") "/lib")
|
|
|
|
|
|
|
|
|
|
;; XXX Adding GStreamer GL support would apparently
|
|
|
|
|
;; require adding gst-plugins-bad to the inputs,
|
|
|
|
|
;; which might entail a security risk as a result of
|
|
|
|
|
;; the plugins of dubious code quality that are
|
|
|
|
|
;; included. More investigation is needed. For
|
|
|
|
|
;; now, we explicitly disable it to prevent an error
|
|
|
|
|
;; at configuration time.
|
2018-03-14 05:24:35 -04:00
|
|
|
|
"-DUSE_GSTREAMER_GL=OFF"
|
|
|
|
|
|
|
|
|
|
;; XXX Disable WOFF2 ‘web fonts’. These were never
|
|
|
|
|
;; supported in our previous builds. Enabling them
|
|
|
|
|
;; requires building libwoff2 and possibly woff2dec.
|
2018-11-09 13:18:55 -05:00
|
|
|
|
"-DUSE_WOFF2=OFF")
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2020-04-25 22:03:48 -04:00
|
|
|
|
(add-after 'unpack 'configure-bubblewrap-store-directory
|
|
|
|
|
(lambda _
|
|
|
|
|
;; This phase is a corollary to 'webkitgtk-share-store.patch' to
|
|
|
|
|
;; avoid 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))
|
|
|
|
|
#t)))
|
2018-11-09 13:18:55 -05:00
|
|
|
|
(add-after 'unpack 'patch-gtk-doc-scan
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2018-11-11 12:09:55 -05:00
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(substitute* file
|
|
|
|
|
(("http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd")
|
|
|
|
|
(string-append (assoc-ref inputs "docbook-xml")
|
|
|
|
|
"/xml/dtd/docbook/docbookx.dtd"))))
|
|
|
|
|
(find-files "Source" "\\.sgml$"))
|
2018-11-09 13:18:55 -05:00
|
|
|
|
#t))
|
2019-10-06 08:24:04 -04:00
|
|
|
|
(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 version)
|
|
|
|
|
(string-append wpebackend-fdo "/lib/" all)))
|
|
|
|
|
#t)))
|
2018-11-09 13:18:55 -05:00
|
|
|
|
(add-after 'install 'move-doc-files
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(doc (assoc-ref outputs "doc")))
|
|
|
|
|
(mkdir-p (string-append doc "/share"))
|
|
|
|
|
(rename-file (string-append out "/share/gtk-doc")
|
|
|
|
|
(string-append doc "/share/gtk-doc"))
|
|
|
|
|
#t))))))
|
2015-04-19 05:58:49 -04:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("bison" ,bison)
|
2016-09-25 03:33:02 -04:00
|
|
|
|
("gettext" ,gettext-minimal)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
|
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
|
("gperf" ,gperf)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
2019-07-07 18:37:03 -04:00
|
|
|
|
("python" ,python-wrapper)
|
2018-11-09 13:18:55 -05:00
|
|
|
|
("gtk-doc" ,gtk-doc) ; For documentation generation
|
|
|
|
|
("docbook-xml" ,docbook-xml) ; For documentation generation
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("ruby" ,ruby)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("gtk+" ,gtk+)
|
|
|
|
|
("libsoup" ,libsoup)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("at-spi2-core" ,at-spi2-core)
|
2019-09-27 13:11:27 -04:00
|
|
|
|
("bubblewrap" ,bubblewrap)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("enchant" ,enchant)
|
|
|
|
|
("geoclue" ,geoclue)
|
|
|
|
|
("gst-plugins-base" ,gst-plugins-base)
|
|
|
|
|
("gtk+-2" ,gtk+-2)
|
|
|
|
|
("harfbuzz" ,harfbuzz)
|
2016-01-08 03:39:23 -05:00
|
|
|
|
("hyphen" ,hyphen)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("icu4c" ,icu4c)
|
2017-03-27 12:53:09 -04:00
|
|
|
|
("libgcrypt" ,libgcrypt)
|
gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.
* gnu/packages/abiword.scm (abiword)[inputs]: Change from LIBJPEG to
LIBJPEG-TURBO.
* gnu/packages/admin.scm (testdisk)[inputs]: Likewise.
* gnu/packages/algebra.scm (giac)[inputs]: Likewise.
* gnu/packages/animation.scm (synfig)[inputs]: Likewise.
* gnu/packages/astronomy.scm (gnuastro, celestia)[inputs]: Likewise.
* gnu/packages/cdrom.scm (dvdstyler)[inputs]: Likewise.
* gnu/packages/cran.scm (r-jpeg, r-tiff, r-readbitmap)[inputs]: Likewise.
* gnu/packages/cups.scm (cups-filters, hplip)[inputs]: Likewise.
* gnu/packages/display-managers.scm (slim)[inputs]: Likewise.
* gnu/packages/ebook.scm (fbreader)[inputs]: Likewise.
* gnu/packages/emacs.scm (emacs)[inputs]: Likewise.
* gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Likewise.
* gnu/packages/fltk.scm (fltk, ntk)[inputs]: Likewise.
* gnu/packages/fontutils.scm (fontforge)[inputs]: Likewise.
* gnu/packages/freedesktop.scm (weston)[inputs]: Likewise.
* gnu/packages/game-development.scm (sfml, allegro, aseprite, python-pygame,
eureka, ioquake3)[inputs]: Likewise.
* gnu/packages/games.scm (adanaxisgpl, freedroidrpg, irrlicht, minetest,
fizmo, supertuxkart, gzdoom, xmoto, xonotic)[inputs]: Likewise.
* gnu/packages/gd.scm (gd, perl-gd)[inputs]: Likewise.
* gnu/packages/ghostscript.scm (lcms)[inputs]: Likewise.
(ghostscript)[inputs, native-inputs]: Likewise.
* gnu/packages/gimp.scm (gegl, gimp)[inputs]: Likewise.
* gnu/packages/gnome.scm (libgnomeui, eog, tracker-miners, gthumb)[inputs]: Likewise.
* gnu/packages/gnunet.scm (libextractor)[inputs]: Likewise.
* gnu/packages/gnustep.scm (windowmaker)[inputs]: Likewise.
* gnu/packages/graphics.scm (blender, blender-2.79, openimageio,
openscenegraph, openscenegraph-3.4, povray, fgallery)[inputs]: Likewise.
* gnu/packages/graphviz.scm (graphviz)[inputs]: Likewise.
* gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Likewise.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]: Likewise.
* gnu/packages/image-processing.scm (dcmtk, mia, vtk, opencv, vips, nip2, vxl,
insight-toolkit)[inputs]: Likewise.
* gnu/packages/image-viewers.scm (gpicview, luminance-hdr)[inputs]: Likewise.
* gnu/packages/image.scm (jpegoptim, libtiff, leptonica, imlib2, freeimage,
vigra, libwebp, libmng, jasper, steghide, jp2a)[inputs]: Likewise.
* gnu/packages/imagemagick.scm (imagemagick, graphicsmagick)[inputs]: Likewise.
* gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9, openjdk11,
openjdk12)[inputs]: Likewise.
* gnu/packages/kde-frameworks.scm (khtml)[inputs]: Likewise.
* gnu/packages/kodi.scm (kodi)[inputs]: Likewise.
* gnu/packages/machine-learning.scm (dlib, tensorflow)[inputs]: Likewise.
* gnu/packages/mate.scm (atril, eom)[inputs]: Likewise.
* gnu/packages/maths.scm (hdf4, hdf-java, hdf-eos2, netcdf)[inputs]: Likewise.
* gnu/packages/netpbm.scm (netpbm)[inputs]: Likewise.
* gnu/packages/pdf.scm (zathura-pdf-mupdf, podofo, mupdf, fbida)[inputs]: Likewise.
* gnu/packages/photo.scm (libraw, libpano13, enblend-enfuse, darktable, hugin,
rawtherapee)[inputs]: Likewise.
* gnu/packages/prolog.scm (swi-prolog)[native-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-hdf4, python-pillow)[inputs]: Likewise.
* gnu/packages/qt.scm (qtbase, qtwebkit)[inputs]: Likewise.
* gnu/packages/rdesktop.scm (freerdp)[inputs]: Likewise.
* gnu/packages/scanner.scm (sane-backends, xsane)[inputs]: Likewise.
* gnu/packages/scheme.scm (racket)[inputs]: Likewise.
* gnu/packages/scribus.scm (scribus)[inputs]: Likewise.
* gnu/packages/sdl.scm (sdl-image)[propagated-inputs]: Likewise.
(guile-sdl)[native-inputs]: Likewise.
* gnu/packages/spice.scm (spice-gtk)[inputs]: Likewise.
* gnu/packages/statistics.scm (r-with-tests)[inputs]: Likewise.
* gnu/packages/tcl.scm (perl-tk)[inputs]: Likewise.
* gnu/packages/upnp.scm (readymedia)[inputs]: Likewise.
* gnu/packages/video.scm (mplayer, mpv, v4l-utils, motion)[inputs]: Likewise.
* gnu/packages/web-browsers.scm (dillo, links)[inputs]: Likewise.
* gnu/packages/web.scm (netsurf)[inputs]: Likewise.
* gnu/packages/webkit.scm (webkitgtk)[inputs]: Likewise.
* gnu/packages/wine.scm (wine)[inputs]: Likewise.
* gnu/packages/wv.scm (wv)[inputs]: Likewise.
* gnu/packages/wxwidgets.scm (wxwidgets, wxwidgets-2)[inputs]: Likewise.
* gnu/packages/xdisorg.scm (xscreensaver)[inputs]: Likewise.
* gnu/packages/xfce.scm (tumbler)[inputs]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[inputs]: Likewise.
* gnu/packages/xorg.scm (xpra)[inputs]: Likewise.
2020-01-17 13:27:01 -05:00
|
|
|
|
("libjpeg" ,libjpeg-turbo)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("libnotify" ,libnotify)
|
|
|
|
|
("libpng" ,libpng)
|
2019-09-27 13:11:27 -04:00
|
|
|
|
("libseccomp" ,libseccomp)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("libsecret" ,libsecret)
|
2017-09-15 13:11:23 -04:00
|
|
|
|
("libtasn1" ,libtasn1)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("libwebp" ,libwebp)
|
2019-09-27 13:11:27 -04:00
|
|
|
|
("libwpe" ,libwpe)
|
2015-04-19 05:58:49 -04:00
|
|
|
|
("libxcomposite" ,libxcomposite)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
|
("libxt" ,libxt)
|
|
|
|
|
("mesa" ,mesa)
|
2019-03-14 11:30:19 -04:00
|
|
|
|
("openjpeg" ,openjpeg)
|
2019-09-27 13:11:27 -04:00
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("wpebackend-fdo" ,wpebackend-fdo)
|
|
|
|
|
("xdg-dbus-proxy" ,xdg-dbus-proxy)))
|
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+")
|
|
|
|
|
(description
|
|
|
|
|
"WebKitGTK+ is a full-featured port of the WebKit rendering engine,
|
|
|
|
|
suitable for projects requiring any kind of web integration, from hybrid
|
|
|
|
|
HTML/CSS applications to full-fledged web browsers.")
|
|
|
|
|
;; 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))))
|