gnu: Add go-webring.
* gnu/packages/web.scm (go-webring): New variable. Hi paren, Thanks for the review. I changed everything but the blog stuff because go-webring is not necessarily used in the context of a blog. A webring can stand on it's own without being associated with a blog. A webring can associate websites that are not blogs or Guix channels ;() Here's v2 all best, jgart Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bdb13dfd29
commit
e827d45db9
1 changed files with 28 additions and 0 deletions
|
@ -58,6 +58,7 @@
|
||||||
;;; Copyright © 2022 cage <cage-dev@twistfold.it>
|
;;; Copyright © 2022 cage <cage-dev@twistfold.it>
|
||||||
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
|
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
|
||||||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||||
|
;;; Copyright © 2022 jgart <jgart@dismail.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -8184,6 +8185,33 @@ provided by a TLS reverse proxy (e.g. tlstunnel, hitch or stunnel).")
|
||||||
;; to account for "vendor names".
|
;; to account for "vendor names".
|
||||||
(properties '((lint-hidden-cve . ("CVE-2019-15520")))))))
|
(properties '((lint-hidden-cve . ("CVE-2019-15520")))))))
|
||||||
|
|
||||||
|
(define-public go-webring
|
||||||
|
(let ((commit "6786a27b0c57df75323217453369c83a4d9f4dea")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-webring")
|
||||||
|
(version (git-version "20220426" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.sr.ht/~amolith/go-webring")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xra0mapdmda8n0z6zsgcqppdzvxc47p0fahsdyig5qmpk89ar8l"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:import-path "git.sr.ht/~amolith/go-webring"
|
||||||
|
#:install-source? #f))
|
||||||
|
(inputs (list go-github-com-spf13-pflag))
|
||||||
|
(home-page "https://git.sr.ht/~amolith/go-webring")
|
||||||
|
(synopsis "Simple webring implementation")
|
||||||
|
(description
|
||||||
|
"@code{go--webring} provides a simple webring implementation as used by
|
||||||
|
the Fediring.")
|
||||||
|
(license (list license:cc0 license:bsd-2)))))
|
||||||
|
|
||||||
(define-public archivebox
|
(define-public archivebox
|
||||||
(package
|
(package
|
||||||
(name "archivebox")
|
(name "archivebox")
|
||||||
|
|
Reference in a new issue