diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 15:40:03 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 15:41:07 +0300 |
commit | dced765eed4b52cb71f5143825db518bcba6af6e (patch) | |
tree | 253539a88cb6d137501025ba374420a48747ffeb /gnu/packages/file-systems.scm | |
parent | 1619f2c18c1b3cca41f52fea3d7231b9ad490af8 (diff) |
gnu: dbxfs: Don't check for updates.
* gnu/packages/file-systems.scm (dbxfs)[source]: Add snippet to remove
version update check.
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 90e00d7592..82b52fe2e9 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -1725,7 +1725,12 @@ Dropbox API v2.") (sha256 (base32 "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) (arguments '(#:tests? #f)) ; tests requires safefs |