diff options
-rw-r--r-- | rodion/packages/go.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/rodion/packages/go.scm b/rodion/packages/go.scm index 1ec6f59..b0af61e 100644 --- a/rodion/packages/go.scm +++ b/rodion/packages/go.scm @@ -344,7 +344,7 @@ implementation procedures outlined by the document.") (define-public miniflux (package (name "miniflux") - (version "2.1.1") + (version "2.1.2") (source (origin (method git-fetch) @@ -353,7 +353,7 @@ implementation procedures outlined by the document.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1aspvgk4b2xzv7qbhmlslvpyf9vcxr3860glw5hgwfkskcfqwx5x")))) + (base32 "0mi0bqnw3y9b2akil1rd52jq59nijsal0w2zp8ll6br0pr4sic82")))) (build-system go-build-system) (arguments (list @@ -367,12 +367,6 @@ implementation procedures outlined by the document.") (add-before 'build 'disable-cgo (lambda _ (setenv "CGO_ENABLED" "0"))) - (add-after 'unpack 'fix-import - (lambda* (#:key import-path #:allow-other-keys) - (substitute* (string-append "src/" import-path - "/internal/integration/rssbridge/rssbridge.go") - (("^(.*import.*)(integration)(.*)$" _ start _ end) - (string-append start "v2/internal/integration" end))))) (add-after 'install 'install-manpage (lambda* (#:key import-path #:allow-other-keys) (let ((man1 (string-append #$output "/share/man/man1/")) |