guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: anki: Fix preferences error.


From: guix-commits
Subject: 04/05: gnu: anki: Fix preferences error.
Date: Mon, 28 Aug 2023 06:51:38 -0400 (EDT)

iyzsong pushed a commit to branch master
in repository guix.

commit 7533ed956c100a04d08a2537a4700eb9ecbcb987
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Fri Aug 25 20:49:50 2023 +0800

    gnu: anki: Fix preferences error.
    
    Fixes <https://issues.guix.gnu.org/65506>.
    
    * gnu/packages/education.scm (anki)[source]: Add snippet.
---
 gnu/packages/education.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index bb307cf7ab..d1e220ebcd 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -737,6 +737,13 @@ stored and user can review his performance in any time.")
                            version "-source.tgz"))
        (sha256
         (base32 "1gfr51rnllkyzli73p4r51h5ypzfa3m7lic3m3rzpywmqwrxs07k"))
+       (modules '((guix build utils)))
+       ;; Fix preferences error: <https://issues.guix.gnu.org/65506>.
+       (snippet '(substitute* "aqt/preferences.py"
+                   (("qc\\['collapseTime']/60\\.0" x)
+                    (format #f "int(~a)" x))
+                   (("qc\\['timeLim']/60\\.0" x)
+                    (format #f "int(~a)" x))))
        (patches (search-patches "anki-mpv-args.patch"))))
     (build-system gnu-build-system)
     (arguments



reply via email to

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