diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2026-04-18 22:30:59 +0900 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2026-04-25 21:35:10 +0900 |
| commit | ce09216dce021a52b2edde2f5423ed3c9d458701 (patch) | |
| tree | 9286c054f01c5de5736c2f299d43532cd50640ff /gnu | |
| parent | cb1f7b8948ed288f37df29ff1247143ff8cb4edb (diff) | |
gnu: Add fead.
* gnu/packages/syndication.scm (fead): New variable.
Change-Id: Ic43d5fe1cc32697c6382bd6585c73cdef647e92b
Merges: https://codeberg.org/guix/guix/pulls/7979
Reviewed-by: Anderson Torres <anderson.torres.8519@gmail.com>
Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/syndication.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index 5a83bb5ba9..0ac40d0885 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2025 Ashish SHUKLA <ashish.is@lostca.se> ;;; Copyright © 2025 Andreas Enge <andreas@enge.fr> +;;; Copyright © 2026 Nguyễn Gia Phong <cnx@loang.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -29,6 +30,7 @@ (define-module (gnu packages syndication) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix download) + #:use-module (guix fossil-download) #:use-module (guix git-download) #:use-module (guix packages) #:use-module (guix utils) @@ -75,6 +77,33 @@ #:use-module (gnu packages xorg) #:use-module (srfi srfi-1)) +(define-public fead + (package + (name "fead") + (version "1.0.1") + (source + (origin + (method fossil-fetch) + (uri (fossil-reference + (uri "https://chim.loan/fead") + (check-in version))) + (sha256 + (base32 "0fzxabmxpyd04v5ym20xhjcnh0vqdwc6z1xjrq676d2k0hr2rzz2")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f ;no test + #:make-flags #~(list (string-append "PREFIX=" #$output)) + #:phases #~(modify-phases %standard-phases + (delete 'configure)))) + (inputs (list python)) + (native-inputs (list help2man)) + (home-page "https://chim.loan/fead") + (synopsis "Advert generator from web feeds") + (description "Fead a tool for advertising other blogs you like on your own +by embedding the summary of their latest posts extracted from their web feed.") + (license license:agpl3+))) + (define-public giara (package (name "giara") |
