guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gfeeds: Make it start.


From: guix-commits
Subject: branch master updated: gnu: gfeeds: Make it start.
Date: Tue, 26 Apr 2022 05:26:36 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 58f3727767 gnu: gfeeds: Make it start.
58f3727767 is described below

commit 58f3727767dc6b7ffd27d9cea87cf391845bbba6
Author: Luis Felipe <luis.felipe.la@protonmail.com>
AuthorDate: Sat Apr 23 14:14:43 2022 -0500

    gnu: gfeeds: Make it start.
    
    This change patches the version of WebKit required by the program to a
    version available in Guix, so that the program actually starts.
    
    * gnu/packages/syndication.scm (gfeeds)[arguments]: Require WebKit2
    4.1 instead of 4.0, which is not available.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/syndication.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 0417737d7d..20929aa7ad 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2018, 2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -537,6 +538,11 @@ formats, including all versions of RSS and Atom.")
              (substitute* "gfeeds/confManager.py"
                (("mpv") (search-input-file inputs "/bin/mpv")))
              #t))
+         (add-after 'unpack 'patch-webkit2-version
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "bin/gfeeds.in"
+               (("gi\\.require_version\\('WebKit2', '4\\.0'\\)")
+                "gi.require_version('WebKit2', '4.1')"))))
          (add-after 'install 'wrap-gfeeds
            (lambda* (#:key outputs #:allow-other-keys)
              (wrap-program (string-append



reply via email to

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