gnu: dbxfs: Don't check for updates.
* gnu/packages/file-systems.scm (dbxfs)[source]: Add snippet to remove version update check.
parent
1619f2c18c
commit
dced765eed
|
@ -1725,7 +1725,12 @@ Dropbox API v2.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vzfhw3z2r0rb6s0qdzirh3pl7rv1z8xmxa0z5h7h1wqhpl05ai7"))
|
"1vzfhw3z2r0rb6s0qdzirh3pl7rv1z8xmxa0z5h7h1wqhpl05ai7"))
|
||||||
(patches (search-patches "dbxfs-remove-sentry-sdk.patch"))))
|
(patches (search-patches "dbxfs-remove-sentry-sdk.patch"))
|
||||||
|
(snippet
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
;; Don't check for package updates.
|
||||||
|
(substitute* "dbxfs/main.py"
|
||||||
|
(("if version") "if false"))))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; tests requires safefs
|
'(#:tests? #f)) ; tests requires safefs
|
||||||
|
|
Reference in New Issue