gnu: anki: Don't phone home for updates.

* gnu/packages/education.scm (anki)[arguments]: Add a
‘disable-update-check’ phase.
This commit is contained in:
Tobias Geerinckx-Rice 2020-07-28 21:23:34 +02:00
parent ccd0a009dc
commit a81a64492f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -758,6 +758,13 @@ (define-public anki
(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)