guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

135/401: gnu: wpebackend-fdo: Update package definition.


From: guix-commits
Subject: 135/401: gnu: wpebackend-fdo: Update package definition.
Date: Tue, 18 Aug 2020 16:21:09 -0400 (EDT)

dannym pushed a commit to branch wip-desktop
in repository guix.

commit 57e81018beedcef16d8d6d799dc76a8346b708b4
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Mon Jul 13 02:00:12 2020 -0400

    gnu: wpebackend-fdo: Update package definition.
    
    * gnu/packages/webkit.scm (wpebackend-fdo): Update package definition.
    [inputs]: Remove libwpe.
    [propagated-inputs]: Add libwpe.
    [synopsis]: Modify.
    
    Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
 gnu/packages/webkit.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index 3fddef9..e7838d2 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -93,13 +93,14 @@ 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
@@ -107,14 +108,14 @@ the WPE-flavored port of WebKit.")
      `(("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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]