Compare commits

..

No commits in common. "a238fc8c286b3fa0d3264e179c49d0d26b2e6865" and "e899a34d8ede41fd0face974634392b2afec8c48" have entirely different histories.

4 changed files with 26 additions and 17 deletions

View File

@ -13,14 +13,12 @@
#:use-module (guix download)
#:use-module (guix git-download)
;; Guix build systems
#:use-module (guix build-system copy)
;; Guix packages
#:use-module (gnu packages compression))
#:use-module (guix build-system copy))
(define bitwarden
(define-public bitwarden
(package
(name "bitwarden")
(version "2026.2.0")
(version "2025.6.1")
(source (origin
(method url-fetch/zipbomb)
(uri (string-append "https://github.com/bitwarden/clients"
@ -28,7 +26,7 @@
"/dist-firefox-" version ".zip"))
(sha256
(base32
"1l2mabgbxf2jdsgd56fbalzszjkxp03cxba1r15vgvdlgmkif5cl"))))
"1yx9f1adh6swbzf24rj621vgccvi8gl7hi8q4r9ccv5qq4zq3f53"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
@ -100,10 +98,10 @@ results are added in a sidebar next to search engine results.")
`(,@(alist-delete 'hidden? (package-properties base))
(disable-updater? . #t))))))
(define ohmyech
(define-public ohmyech
(package
(name "ohmyech")
(version "1.2")
(version "1.1")
(properties
'((addon-id . "{46b8ab0b-8adf-4e43-ad67-acef5a8d45c9}")
(hidden? . #t)
@ -112,11 +110,11 @@ results are added in a sidebar next to search engine results.")
(method git-fetch)
(uri (git-reference
(url "https://github.com/27justin/ohmyech")
(commit "aa0cf4cc5c4bcb6ce508d8a4e7ee4c95c2e63cbe")))
(commit "ec7935d500a9d354776586e25261cef3595c40c7")))
(file-name (git-file-name name version))
(sha256
(base32
"1cqgfv2q7shisi9ijac5s85xy9q2rz9f9hxwq3q41vfgrcvd8zng"))
"1mrbm8c8z9zpfrs0qk5qj64f35p7c5lrxfn3nhda0ar0b2rv6593"))
(modules '((guix build utils)))
(snippet
#~(substitute* "manifest.json"

View File

@ -1,4 +1,4 @@
From 90bf62f411590cc0b813e6f62c3a0ef89cf17d1f Mon Sep 17 00:00:00 2001
From f45f42fe17a0037ce3b8c4f22537f257338734e5 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Sun, 30 Nov 2025 12:13:36 +0800
Subject: [PATCH] templates: Add more forges.
@ -8,7 +8,7 @@ Subject: [PATCH] templates: Add more forges.
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
index 1cf7ebf..042d46a 100644
index 1cf7ebf..2ee29fa 100644
--- a/src/cuirass/templates.scm
+++ b/src/cuirass/templates.scm
@@ -1526,7 +1526,9 @@ (define %vcs-web-views
@ -18,7 +18,7 @@ index 1cf7ebf..042d46a 100644
- ("github.com" ,labhub-url))))
+ ("github.com" ,labhub-url)
+ ("git.sr.ht" ,labhub-url)
+ ("git.guix.moe" ,labhub-url))))
+ ("git.urspace.moe" ,labhub-url))))
(define %vcs-web-commit-range-views
;; List of host names and corresponding URL to display a commit range.
@ -44,7 +44,7 @@ index 1cf7ebf..042d46a 100644
- ("github.com" ,github-url))))
+ ("github.com" ,github-url)
+ ("git.sr.ht" ,sourcehut-url)
+ ("git.guix.moe" ,github-url))))
+ ("git.urspace.moe" ,github-url))))
(define* (commit-hyperlink url commit
#:optional (text commit))

View File

@ -200,7 +200,7 @@ from serving static websites to running dynamic web applications.")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.guix.moe/hako/caddy.git")
(url "https://git.urspace.moe/hako/caddy.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
@ -216,7 +216,7 @@ from serving static websites to running dynamic web applications.")
(sha256
(base32
"03k5cjnkpy3ar79rs3p01lm0b6x4ypf7ixzindcv858gdyncq5pb"))))))
(home-page "https://git.guix.moe/hako/caddy")
(home-page "https://git.urspace.moe/hako/caddy")
(properties '((disable-updater? . #t)))))
(define-public forgejo

View File

@ -142,7 +142,18 @@
#~(make-kill-destructor))
(actions
(list (shepherd-configuration-action "/etc/caddy/Caddyfile")
(shepherd-signal-action 'reload SIGUSR1)))
(shepherd-action
(name 'reload)
(documentation "Reload Caddy configuration file.")
(procedure
#~(lambda (pid)
(if pid
(begin
(invoke "/run/privileged/bin/caddy" "reload"
"--config" "/etc/caddy/Caddyfile")
(display "Service caddy has been asked to \
reload its configuration file."))
(display "Service caddy is not running.")))))))
(auto-start? auto-start?)))))
(define caddy-service-type