gnu: anki: Don't phone home for updates.
authorTobias Geerinckx-Rice <me@tobias.gr>
Tue, 28 Jul 2020 19:23:34 +0000 (21:23 +0200)
committerTobias Geerinckx-Rice <me@tobias.gr>
Tue, 28 Jul 2020 19:25:57 +0000 (21:25 +0200)
* gnu/packages/education.scm (anki)[arguments]: Add a
‘disable-update-check’ phase.

gnu/packages/education.scm

index 99e7b66..a4081cc 100644 (file)
@@ -758,6 +758,13 @@ adjust the level of difficulty.")
                   (ice-9 match))
        #:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'disable-update-check
+           ;; Don't ‘phone home’ unasked to check for updates.
+           (lambda _
+             (substitute* "aqt/update.py"
+               (("requests\\.post")
+                "throw.an.exception.instead"))
+             #t))
          (delete 'configure)            ;no configure script
          (add-after 'install 'wrap
            (lambda* (#:key inputs outputs #:allow-other-keys)