[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#57889] [PATCH 5/8] gnu: Add syndication-domination.
From: |
Liliana Marie Prikler |
Subject: |
[bug#57889] [PATCH 5/8] gnu: Add syndication-domination. |
Date: |
Sat, 17 Sep 2022 22:03:33 +0200 |
* gnu/packages/syndication.scm (syndication-domination): New variable.
---
gnu/packages/syndication.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 6eb88afb8f..44464d17a4 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -35,7 +35,9 @@ (define-module (gnu packages syndication)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
+ #:use-module (gnu packages build-tools)
#:use-module (gnu packages check)
+ #:use-module (gnu packages cmake)
#:use-module (gnu packages crates-io)
#:use-module (gnu packages curl)
#:use-module (gnu packages documentation)
@@ -48,6 +50,7 @@ (define-module (gnu packages syndication)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages pretty-print)
#:use-module (gnu packages python)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-xyz)
@@ -557,3 +560,28 @@ (define-public gfeeds
(description "Feeds is an RSS/Atom feed reader made with GTK+
and it has an easy-to-use graphical user interface.")
(license license:gpl3+)))
+
+(define-public syndication-domination
+ (let ((revision "1")
+ (commit "f64caabd6f46be14fdb92085971a7f2d6fa5e61e"))
+ (package
+ (name "syndication-domination")
+ (version (git-version "0.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/gabmus/syndication-domination")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
"1i0llzzm3lc2kw7rjhb46c7wlknsb6r9bdrf61chi2pk6hpjyscv"))))
+ (build-system meson-build-system)
+ (arguments
+ (list #:meson meson-0.63))
+ (inputs (list fmt tidy-html pybind11 python pugixml))
+ (native-inputs (list cmake pkg-config)) ; need cmake to find pybind11
+ (home-page "https://gitlab.com/gabmus/syndication-domination")
+ (synopsis "RSS/Atom feed parser")
+ (description "This package provides an experimental RSS/Atom feed
+parser. It is \"not fit for use at this point\", but gfeeds uses it anyway.")
+ (license license:agpl3))))
--
2.37.3
- [bug#57889] [PATCH 0/8] Add gfeeds-next, Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 2/8] gnu: pugixml: Update to 1.12.1., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 5/8] gnu: Add syndication-domination.,
Liliana Marie Prikler <=
- [bug#57889] [PATCH 3/8] gnu: Add python-timeout-decorator., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 6/8] gnu: gfeeds: Use git origin., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 7/8] gnu: gfeeds: Modernize package description., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 4/8] gnu: Add python-readability-lxml., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 1/8] gnu: blueprint-compiler: Wrap GUIX_PYTHONPATH and GI_TYPELIB_PATH., Liliana Marie Prikler, 2022/09/17
- [bug#57889] [PATCH 8/8] gnu: Add gfeeds-next., Liliana Marie Prikler, 2022/09/17