mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add wpebackend-fdo.
* gnu/packages/webkit.scm (wpebackend-fdo): New public variable.
This commit is contained in:
parent
b037ea963f
commit
7970127ff0
1 changed files with 29 additions and 0 deletions
|
@ -35,6 +35,7 @@ (define-module (gnu packages webkit)
|
|||
#:use-module (gnu packages docbook)
|
||||
#:use-module (gnu packages enchant)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages gl)
|
||||
|
@ -87,6 +88,34 @@ (define-public libwpe
|
|||
backend which implements them.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public wpebackend-fdo
|
||||
(package
|
||||
(name "wpebackend-fdo")
|
||||
(version "1.4.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://wpewebkit.org/releases/"
|
||||
"wpebackend-fdo-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1bwbs47v4nlzhsqrw9fpyny5m3n9ry0kfzsvk90zjif4bd5cl6d9"))))
|
||||
(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)))
|
||||
|
||||
(define-public webkitgtk
|
||||
(package
|
||||
(name "webkitgtk")
|
||||
|
|
Loading…
Reference in a new issue