diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2023-12-16 23:14:56 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-12-16 23:14:56 -0500 |
commit | 17c3a3bfff150a42c904233fa39818d73c9f68f3 (patch) | |
tree | a7614b7cd9a7106ea59f5ac1caad0c2c496b3a45 /gnu/packages/browser-extensions.scm | |
parent | f5493629e2650c0d30caf0f01f76b2383f78b9de (diff) | |
parent | fe86819d8bde674766659c22b215d3a689a8026e (diff) |
Merge branch 'master' into mesa-updates
Change-Id: I0c6e2410c51335c68634738be030e374f5b492e9
Diffstat (limited to 'gnu/packages/browser-extensions.scm')
-rw-r--r-- | gnu/packages/browser-extensions.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/browser-extensions.scm b/gnu/packages/browser-extensions.scm index 21c519eda3..0b42acc422 100644 --- a/gnu/packages/browser-extensions.scm +++ b/gnu/packages/browser-extensions.scm @@ -221,3 +221,33 @@ fill and submit login forms if a matching password entry is found.") (define-public passff/icecat (make-icecat-extension passff)) + +(define keepassxc-browser + (package + (name "keepassxc-browser") + (version "1.8.10") + (source (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/keepassxreboot/keepassxc-browser") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1059kcb95ig18izbchwlb7pz41l4l3vjwzlmhz3w8zw2qxm6hrvx")))) + (build-system copy-build-system) + (properties + '((addon-id . "keepassxc-browser@keepassxc.org"))) + (arguments + `(#:install-plan + '(("keepassxc-browser" ,(assq-ref properties 'addon-id))))) + (synopsis "Browser extension for the KeePassXC password manager") + (description + "This package provides an extension allow the browser to work together +with the @uref{https://keepassxc.org, KeePassXC} password manager.") + (home-page "https://keepassxc.org") + (license license:gpl3+))) + +(define-public keepassxc-browser/icecat + (make-icecat-extension keepassxc-browser)) |