unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 63903@debbugs.gnu.org
Cc: Hilton Chain <hako@ultrarare.space>
Subject: [bug#63903] [PATCH 11/11] gnu: Add miniflux.
Date: Mon,  5 Jun 2023 18:09:25 +0800	[thread overview]
Message-ID: <47ff201ef89246ac17f4ebc32bb88075514739ed.1685958854.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1685958854.git.hako@ultrarare.space>

* gnu/packages/web.scm (miniflux): New variable.
---
 gnu/packages/web.scm | 55 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 3af4aa0b8d..ae7bfcfc27 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -186,6 +186,7 @@ (define-module (gnu packages web)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages skribilo)
   #:use-module (gnu packages sphinx)
+  #:use-module (gnu packages syncthing)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages textutils)
   #:use-module (gnu packages tls)
@@ -320,6 +321,60 @@ (define-public httpd/pinned
                 (base32
                  "1jgmfbazc2n9dnl7axhahwppyq25bvbvwx0lqplq76by97fgf9q1")))))))
 
+(define-public miniflux
+  (package
+    (name "miniflux")
+    (version "2.0.44")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/miniflux/v2")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "18ggk71nk3zylgkwq32glggdcapgsj772qn2y4i9hbk374l6h61w"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:go go-1.19
+           #:install-source? #f
+           #:import-path "miniflux.app"
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'install 'rename-binary
+                 (lambda _
+                   (let ((bindir (string-append #$output "/bin/")))
+                     (rename-file (string-append bindir "miniflux.app")
+                                  (string-append bindir "miniflux"))))))))
+    (propagated-inputs
+     (list go-github-com-coreos-go-oidc
+           go-github-com-go-telegram-bot-api-telegram-bot-api
+           go-github-com-gorilla-mux
+           go-github-com-lib-pq
+           go-github-com-matrix-org-gomatrix
+           go-github-com-prometheus-client-golang
+           go-github-com-puerkitobio-goquery
+           go-github-com-rylans-getlang
+           go-github-com-tdewolff-minify-v2
+           go-github-com-yuin-goldmark
+           go-golang-org-x-term
+           go-mvdan-cc-xurls))
+    (home-page "https://miniflux.app/")
+    (synopsis "Minimalist and opinionated feed reader")
+    (description
+     "Miniflux is a minimalist and opinionated feed reader:
+
+@itemize
+@item Written in Go (Golang)
+@item Works only with Postgresql
+@item Doesn't use any ORM
+@item Doesn't use any complicated framework
+@item Use only modern vanilla Javascript (ES6 and Fetch API)
+@item Single binary compiled statically without dependency
+@item The number of features is voluntarily limited
+@end itemize\n")
+    (license license:asl2.0)))
+
 (define-public mod-wsgi
   (package
     (name "mod-wsgi")
-- 
2.40.1





  parent reply	other threads:[~2023-06-05 10:11 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-05 10:02 [bug#63903] [PATCH 00/11] gnu: Add miniflux Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 01/11] gnu: Add go-github-com-pquerna-cachecontrol Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 02/11] gnu: Add go-gopkg-in-square-go-jose-v2 Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 03/11] gnu: Add go-github-com-coreos-go-oidc Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 04/11] gnu: Add go-github-com-tdewolff-test Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 05/11] gnu: Add go-github-com-tdewolff-parse-v2 Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 06/11] gnu: Add go-github-com-tdewolff-minify-v2 Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 07/11] gnu: Add go-github-com-technoweenie-multipartstreamer Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 08/11] gnu: Add go-github-com-go-telegram-bot-api-telegram-bot-api Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 09/11] gnu: Add go-github-com-matrix-org-gomatrix Hilton Chain via Guix-patches via
2023-06-05 10:09 ` [bug#63903] [PATCH 10/11] gnu: Add go-github-com-rylans-getlang Hilton Chain via Guix-patches via
2023-06-05 10:09 ` Hilton Chain via Guix-patches via [this message]
2023-06-05 12:38   ` [bug#63903] [PATCH 11/11] gnu: Add miniflux Jack Hill
2023-06-05 13:45     ` Hilton Chain via Guix-patches via
2023-06-05 13:52 ` [bug#63903] [PATCH v2 00/11] " Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 01/11] gnu: Add go-github-com-pquerna-cachecontrol Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 02/11] gnu: Add go-gopkg-in-square-go-jose-v2 Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 03/11] gnu: Add go-github-com-coreos-go-oidc Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 04/11] gnu: Add go-github-com-tdewolff-test Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 05/11] gnu: Add go-github-com-tdewolff-parse-v2 Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 06/11] gnu: Add go-github-com-tdewolff-minify-v2 Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 07/11] gnu: Add go-github-com-technoweenie-multipartstreamer Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 08/11] gnu: Add go-github-com-go-telegram-bot-api-telegram-bot-api Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 09/11] gnu: Add go-github-com-matrix-org-gomatrix Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 10/11] gnu: Add go-github-com-rylans-getlang Hilton Chain via Guix-patches via
2023-06-05 13:52   ` [bug#63903] [PATCH v2 11/11] gnu: Add miniflux Hilton Chain via Guix-patches via
2023-07-01 21:29   ` bug#63903: [PATCH 00/11] " Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47ff201ef89246ac17f4ebc32bb88075514739ed.1685958854.git.hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=63903@debbugs.gnu.org \
    --cc=hako@ultrarare.space \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).