From ce09216dce021a52b2edde2f5423ed3c9d458701 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sat, 18 Apr 2026 22:30:59 +0900 Subject: gnu: Add fead. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/syndication.scm (fead): New variable. Change-Id: Ic43d5fe1cc32697c6382bd6585c73cdef647e92b Merges: https://codeberg.org/guix/guix/pulls/7979 Reviewed-by: Anderson Torres Signed-off-by: Nguyễn Gia Phong --- gnu/packages/syndication.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu') 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 ;;; Copyright © 2025 Ashish SHUKLA ;;; Copyright © 2025 Andreas Enge +;;; Copyright © 2026 Nguyễn Gia Phong ;;; ;;; 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") -- cgit v1.3