diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-06 09:22:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-03-12 13:48:32 +0200 |
commit | ac74586ff355df5e14242a5ad0bad23ede23a36e (patch) | |
tree | 8963bc0cca97b2e4fa499b09dd490381ba3c7d28 | |
parent | 62d8b14e325880bb68fbc7dd69452c6cace1149f (diff) |
gnu: syncthing: Mark as tunable.
* gnu/packages/syncthing.scm (syncthing)[properties]: Mark package as
tunable.
Change-Id: Ia885bbd32f043e83b231359cca438ea9caf4e8dc
-rw-r--r-- | gnu/packages/syncthing.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index d09b03bcdb..744b857070 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -129,7 +129,9 @@ Protocol.") (home-page "https://github.com/syncthing/syncthing") (properties '((release-monitoring-url . "https://syncthing.net/downloads/") - (upstream-name . "syncthing-source"))) + (upstream-name . "syncthing-source") + ;; The hashing code greatly benefits from newer architecture support. + (tunable? . #t))) (license mpl2.0))) (define-public syncthing-gtk |