diff options
| author | André Batista <nandre@riseup.net> | 2025-07-11 16:50:45 -0300 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2025-07-24 14:45:08 +0800 |
| commit | f00f6915061e71d4e4056a8a1ebc334ef17fb627 (patch) | |
| tree | 30ec34d666ab934a13bbaccbfd938b4845bdb318 | |
| parent | bea01f2295100fffdc160a808c0bee4bc1f60f4e (diff) | |
gnu: keepassxc-browser: Update to 1.9.9.1.
The default manifest.json file targets chromium based browsers and does
not work on firefox based ones on account of them lacking support for
background.service_worker.
See: <https://bugzilla.mozilla.org/show_bug.cgi?id=1573659>
* gnu/packages/browser-extensions.scm (keepassxc-browser): Update to 1.9.9.1.
[source] <snippet>: Use 'manifest_firefox.json' instead of the default one
which targets chromium based browsers.
Change-Id: Iedb9e7943ad6a359402476c7a93e094b62e2b4be
Signed-off-by: Hilton Chain <hako@ultrarare.space>
| -rw-r--r-- | gnu/packages/browser-extensions.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gnu/packages/browser-extensions.scm b/gnu/packages/browser-extensions.scm index c9d9bb48f70..53672ed0343 100644 --- a/gnu/packages/browser-extensions.scm +++ b/gnu/packages/browser-extensions.scm | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr> | 3 | ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr> |
| 4 | ;;; Copyright © 2023, 2024 Clément Lassieur <clement@lassieur.org> | 4 | ;;; Copyright © 2023, 2024 Clément Lassieur <clement@lassieur.org> |
| 5 | ;;; Copyright © 2025 Robin Templeton <robin@guixotic.coop> | 5 | ;;; Copyright © 2025 Robin Templeton <robin@guixotic.coop> |
| 6 | ;;; Copyright © 2025 André Batista <nandre@riseup.net> | ||
| 6 | ;;; | 7 | ;;; |
| 7 | ;;; This file is part of GNU Guix. | 8 | ;;; This file is part of GNU Guix. |
| 8 | ;;; | 9 | ;;; |
| @@ -262,7 +263,7 @@ fill and submit login forms if a matching password entry is found.") | |||
| 262 | (define keepassxc-browser | 263 | (define keepassxc-browser |
| 263 | (package | 264 | (package |
| 264 | (name "keepassxc-browser") | 265 | (name "keepassxc-browser") |
| 265 | (version "1.8.10") | 266 | (version "1.9.9.1") |
| 266 | (source (origin | 267 | (source (origin |
| 267 | (method git-fetch) | 268 | (method git-fetch) |
| 268 | (uri (git-reference | 269 | (uri (git-reference |
| @@ -272,7 +273,15 @@ fill and submit login forms if a matching password entry is found.") | |||
| 272 | (file-name (git-file-name name version)) | 273 | (file-name (git-file-name name version)) |
| 273 | (sha256 | 274 | (sha256 |
| 274 | (base32 | 275 | (base32 |
| 275 | "1059kcb95ig18izbchwlb7pz41l4l3vjwzlmhz3w8zw2qxm6hrvx")))) | 276 | "12m7j7gz5gdhlv3paj9mmv9nb94cf80lridipmbdvk9shr43d0ag")) |
| 277 | ;; Default 'manifest.json' targets chromium based browsers and | ||
| 278 | ;; depends on background.service_worker support. | ||
| 279 | ;; See: <https://bugzilla.mozilla.org/show_bug.cgi?id=1573659> | ||
| 280 | (snippet | ||
| 281 | #~(begin | ||
| 282 | (delete-file "keepassxc-browser/manifest.json") | ||
| 283 | (copy-file "dist/manifest_firefox.json" | ||
| 284 | "keepassxc-browser/manifest.json"))))) | ||
| 276 | (build-system copy-build-system) | 285 | (build-system copy-build-system) |
| 277 | (properties | 286 | (properties |
| 278 | '((addon-id . "keepassxc-browser@keepassxc.org"))) | 287 | '((addon-id . "keepassxc-browser@keepassxc.org"))) |
