summaryrefslogtreecommitdiff
path: root/gnu/packages/web.scm
diff options
context:
space:
mode:
authorRodion Goritskov <rodion@goritskov.com>2026-01-03 12:27:53 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:26:05 +0100
commit7b319b00ac847c87e298d575bbb4dc0e7db3a411 (patch)
tree7177ccd192d6c4b6836be8a244f520a5b9732cfa /gnu/packages/web.scm
parent530bf82a24aaba91ea1f0e2abb11151987c4c91b (diff)
gnu: miniflux: Update to 2.2.16.
* gnu/packages/web.scm (miniflux): Update to 2.2.16. [phases]{skip-real-domain-resolve-test}: New phase. Change-Id: I03fb37186b6e7debc0cf99d1f4752a0667f7a07d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r--gnu/packages/web.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5fd1d0e54b1..caa5baa9867 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -80,6 +80,7 @@
;;; Copyright © 2025 pinoaffe <pinoaffe@gmail.com>
;;; Copyright © 2025 gemmaro <gemmaro.dev@gmail.com>
;;; Copyright © 2025 Igorj Gorjaĉev <igor@goryachev.org>
+;;; Copyright © 2026 Rodion Goritskov <rodion@goritskov.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -393,7 +394,7 @@ one.")
(define-public miniflux
(package
(name "miniflux")
- (version "2.2.12")
+ (version "2.2.16")
(source
(origin
(method git-fetch)
@@ -402,7 +403,7 @@ one.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0nz12an801r9d2da8p6fic9qy4524y7cprfpimw13ac5c4iqvr0d"))))
+ (base32 "02bwrmn7j0dyi6hhc38s73fyqrfz6swp1c9yzp92rzg6hj10b7cq"))))
(build-system go-build-system)
(arguments
(list
@@ -414,6 +415,12 @@ one.")
#$version))
#:phases
#~(modify-phases %standard-phases
+ ;; Skipping test case that is trying to resolve a domain name
+ (add-after 'unpack 'skip-real-domain-resolve-test
+ (lambda _
+ (substitute* "src/miniflux.app/v2/internal/urllib/url_test.go"
+ (("\\{\"example.org\", \"example.org\", false\\},")
+ "// {\"example.org\", \"example.org\", false},"))))
(add-after 'install 'install-manpage
(lambda* (#:key import-path #:allow-other-keys)
(let ((man1 (string-append #$output "/share/man/man1/"))