From 8853a749cc54af887284fec83bddc5838986694d Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Mon, 13 Jul 2020 02:00:12 -0400 Subject: [PATCH 50/62] gnu: wpebackend-fdo: Update package definition. * gnu/packages/webkit.scm (wpebackend-fdo): Update package definition. [inputs]: Remove libwpe. [propagated-inputs]: Add libwpe. [synopsis]: Modify. --- gnu/packages/webkit.scm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 06eab4a206..8568dd2ff1 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -93,28 +93,29 @@ the WPE-flavored port of WebKit.") (package (name "wpebackend-fdo") (version "1.6.1") - (source (origin - (method url-fetch) - (uri (string-append "https://wpewebkit.org/releases/" - "wpebackend-fdo-" version ".tar.xz")) - (sha256 - (base32 - "1jdi43gciqjgvhnqxs160f3hmp1hkqhrllb0hhmldyxc4wryw3kl")))) + (source + (origin + (method url-fetch) + (uri + (string-append "https://wpewebkit.org/releases/" + "wpebackend-fdo-" version ".tar.xz")) + (sha256 + (base32 "1jdi43gciqjgvhnqxs160f3hmp1hkqhrllb0hhmldyxc4wryw3kl")))) (build-system cmake-build-system) (arguments - `(#:tests? #f)) ;no tests + `(#:tests? #f)) ; No target (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("glib" ,glib) - ("libwpe" ,libwpe) ("mesa" ,mesa) ("wayland" ,wayland))) + (propagated-inputs + `(("libwpe" ,libwpe))) + (synopsis "A FreeDesktop.org backend for WPE.") + (description "This package provides a backend implementation for the WPE +WebKit engine that uses Wayland for graphics output.") (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 -- 2.27.0