mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-14 16:13:07 +00:00
Compare commits
2 Commits
f559aee629
...
c7986b5d58
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7986b5d58 | ||
|
|
79f92602d6 |
@ -119,7 +119,9 @@ Binary Packages / 二進制包:
|
|||||||
+ clash-bin
|
+ clash-bin
|
||||||
+ hugo-bin
|
+ hugo-bin
|
||||||
+ mihomo-bin
|
+ mihomo-bin
|
||||||
|
+ miniflux-injector-icecat
|
||||||
+ shadow-tls-bin
|
+ shadow-tls-bin
|
||||||
|
+ sidebery-icecat
|
||||||
+ sing-box-bin
|
+ sing-box-bin
|
||||||
+ tailscale-bin
|
+ tailscale-bin
|
||||||
+ wakapi-bin
|
+ wakapi-bin
|
||||||
|
|||||||
@ -8,6 +8,7 @@
|
|||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system copy)
|
#:use-module (guix build-system copy)
|
||||||
|
#:use-module (gnu build icecat-extension)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bootstrap)
|
#:use-module (gnu packages bootstrap)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
@ -237,6 +238,47 @@ different needs.")
|
|||||||
designed for flexibility.")
|
designed for flexibility.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define miniflux-injector
|
||||||
|
(package
|
||||||
|
(name "miniflux-injector")
|
||||||
|
(version "2.3.3")
|
||||||
|
(properties '((addon-id . "{528ec801-2e29-4cb9-ae71-5a90503138d1}")))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/Sevichecc/miniflux-injector/releases/download"
|
||||||
|
"/v" version "/miniflux_injector-" version ".zip"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"199z441ak6dwy7skgbwc9aa4gfd2r4i22hxfm27s5k3rv7barbvs"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
#~(substitute* "manifest.json"
|
||||||
|
(("homepage_url.*" line)
|
||||||
|
(string-append line "\
|
||||||
|
\"browser_specific_settings\": {
|
||||||
|
\"gecko\": {
|
||||||
|
\"id\": \"" #$(assq-ref properties 'addon-id) "\"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"))))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:install-plan
|
||||||
|
#~'(("." #$(assq-ref (package-properties this-package) 'addon-id)))))
|
||||||
|
(home-page "https://github.com/Sevichecc/miniflux-injector")
|
||||||
|
(synopsis "Injects Miniflux search results into search page")
|
||||||
|
(description
|
||||||
|
"This package provides a browser extension to inject Miniflux search
|
||||||
|
results into search page. Search terms are sent to your Miniflux instance and
|
||||||
|
results are added in a sidebar next to search engine results.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public miniflux-injector/icecat
|
||||||
|
(make-icecat-extension miniflux-injector))
|
||||||
|
|
||||||
(define-public shadow-tls-bin
|
(define-public shadow-tls-bin
|
||||||
(package
|
(package
|
||||||
(name "shadow-tls-bin")
|
(name "shadow-tls-bin")
|
||||||
@ -266,6 +308,35 @@ designed for flexibility.")
|
|||||||
monster-in-the-middle}.")
|
monster-in-the-middle}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define sidebery
|
||||||
|
(package
|
||||||
|
(name "sidebery")
|
||||||
|
(version "5.2.0.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/mbnuqw/sidebery/releases/download/v"
|
||||||
|
(string-drop-right version 2) "/sidebery-" version ".xpi"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0wb8rmq25sjnlig3pi1ix2kb8x91pilhh9ag4mk2yqsv9r4gcpw8"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:install-plan
|
||||||
|
#~'(("." #$(assq-ref (package-properties this-package) 'addon-id)))))
|
||||||
|
(home-page "https://github.com/mbnuqw/sidebery")
|
||||||
|
(synopsis "Manage tabs and bookmarks in sidebar")
|
||||||
|
(description
|
||||||
|
"This package provides a browser extension for managing tabs and bookmarks
|
||||||
|
in sidebar.")
|
||||||
|
(license license:expat)
|
||||||
|
(properties '((addon-id . "{3c078156-979c-498b-8990-85f7987dd929}")))))
|
||||||
|
|
||||||
|
(define-public sidebery/icecat
|
||||||
|
(make-icecat-extension sidebery))
|
||||||
|
|
||||||
(define-public sing-box-bin
|
(define-public sing-box-bin
|
||||||
(package
|
(package
|
||||||
(name "sing-box-bin")
|
(name "sing-box-bin")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user