rosenthal: Add bitwarden-icecat.

* rosenthal/packages/binaries.scm (bitwarden,bitwarden/icecat): New variables.
* README.org (Packages): Add it.
* etc/manifest: Add it.
This commit is contained in:
Hilton Chain 2025-02-10 00:22:09 +08:00
parent b46e9132f3
commit 2d941782ff
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
3 changed files with 28 additions and 0 deletions

View File

@ -95,6 +95,7 @@ Rosenthal 頻道定義如下,將其加入 =~/.config/guix/channels.scm= 以由
Binary Packages / 二進制包:
+ atuin-bin
+ bitwarden-icecat
+ clash-bin
+ hugo-bin
+ komga-bin

View File

@ -20,6 +20,7 @@
"wakatime-cli-bin"
;; TODO: Updater unavailable.
;; "bitwarden-icecat"
;; "clash-bin"
;; "dnsmasq-china-list"
;; "emacs-pcmpl-tailscale"

View File

@ -73,6 +73,32 @@ encrypted synchronisation of history between machines, via an Atuin server.")
(license license:gpl3)
(properties '((upstream-name . "atuin")))))
(define bitwarden
(package
(name "bitwarden")
(version "2025.1.3")
(source (origin
(method url-fetch/zipbomb)
(uri (string-append "https://github.com/bitwarden/clients"
"/releases/download/browser-v" version
"/dist-firefox-" version ".zip"))
(sha256
(base32
"0y1vlwvbjmkcspazs7wz4cswjby9i5qi0zj7c02dl06n6kprl7l6"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
#~'(("." #$(assq-ref (package-properties this-package) 'addon-id)))))
(home-page "https://bitwarden.com/")
(synopsis "Bitwarden client browser extension")
(description
"This package provides browser extension for Bitwarden client.")
(license license:gpl3)
(properties '((addon-id . "{446900e4-71c2-419f-a6a7-df9c091e268b}")))))
(define-public bitwarden/icecat
(make-icecat-extension bitwarden))
(define-public clash-bin
(package
(name "clash-bin")