gnu: anki: Don't phone home for updates.
* gnu/packages/education.scm (anki)[arguments]: Add a ‘disable-update-check’ phase.master
parent
ccd0a009dc
commit
a81a64492f
|
@ -758,6 +758,13 @@ adjust the level of difficulty.")
|
||||||
(ice-9 match))
|
(ice-9 match))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-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
|
(delete 'configure) ;no configure script
|
||||||
(add-after 'install 'wrap
|
(add-after 'install 'wrap
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
|
Reference in New Issue