GNU bug report logs -
#67144
Add mailctl
Previous Next
To reply to this bug, email your comments to 67144 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67144
; Package
guix-patches
.
(Mon, 13 Nov 2023 05:01:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
VÖRÖSKŐI András <voroskoi <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 13 Nov 2023 05:01:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi,
This series of patches adds mailctl. With mailctl You can use
fdm, msmtp and similar apps and authenticate them with OAuth2.
Thanks,
Information forwarded
to
lars <at> 6xq.net, guix-patches <at> gnu.org
:
bug#67144
; Package
guix-patches
.
(Mon, 13 Nov 2023 05:06:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 67144 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/haskell-xyz.scm (ghc-hsyslog): New variable.
Change-Id: If3bbfb8aff10fb129c5d6e626d3d62469dcbaf96
---
gnu/packages/haskell-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index c02fd007f9..a5bd2f2196 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -33,6 +33,7 @@
;;; Copyright © 2022 jgart <jgart <at> dismail.de>
;;; Copyright © 2023 Josselin Poiret <dev <at> jpoiret.xyz>
;;; Copyright © 2023 zamfofex <zamfofex <at> twdb.moe>
+;;; Copyright © 2023 VÖRÖSKŐI András <voroskoi <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5728,6 +5729,27 @@ (define-public ghc-hsyaml
@end itemize")
(license license:gpl2+)))
+(define-public ghc-hsyslog
+ (package
+ (name "ghc-hsyslog")
+ (version "5.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hackage-uri "hsyslog" version))
+ (sha256
+ (base32 "1kkypn0dd92aqv8dr112bhkr9k9r9mchnyyvy41kvhj2zg447v1y"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "hsyslog")))
+ (arguments
+ `(#:cabal-revision ("1"
+ "0k1j46nk3z64zw4bqmvw5lgy16ih200m66rv4b6ygjqv7nglqq0b")))
+ (home-page "https://github.com/peti/hsyslog")
+ (synopsis "FFI interface to syslog(3) from POSIX.1-2001")
+ (description
+ "This package provides a Haskell interface to @code{syslog}.")
+ (license license:bsd-3)))
+
(define-public ghc-http-api-data
(package
(name "ghc-http-api-data")
base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94
--
2.41.0
Information forwarded
to
lars <at> 6xq.net, guix-patches <at> gnu.org
:
bug#67144
; Package
guix-patches
.
(Mon, 13 Nov 2023 05:06:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 67144 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/haskell-xyz.scm (ghc-twain): New variable.
Change-Id: Ic193d53c9b6892e1de34d61a9f9d4a2d2921569b
---
gnu/packages/haskell-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index a5bd2f2196..d6d858f6e1 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -6562,6 +6562,35 @@ (define-public ghc-these-lens
(description "This package provides Prism and Traversals for @code{These}.")
(license license:bsd-3)))
+(define-public ghc-twain
+ (package
+ (name "ghc-twain")
+ (version "2.1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hackage-uri "twain" version))
+ (sha256
+ (base32 "1hkzp2g671dagmv1qznkf3mw3l2mslckg7h0a8x8633h6i3j6br0"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "twain")))
+ (inputs (list ghc-aeson
+ ghc-case-insensitive
+ ghc-cookie
+ ghc-either
+ ghc-http-types
+ ghc-http2
+ ghc-vault
+ ghc-wai
+ ghc-wai-extra))
+ (native-inputs (list ghc-hspec ghc-hspec-discover ghc-hspec-wai))
+ (home-page "https://github.com/alexmingoia/twain")
+ (synopsis "Tiny web application framework for WAI")
+ (description
+ "Twain is tiny web application framework for WAI. It provides routing,
+parameter parsing, and an either-like monad for composing responses.")
+ (license license:bsd-3)))
+
(define-public ghc-libffi
(package
(name "ghc-libffi")
--
2.41.0
Information forwarded
to
lars <at> 6xq.net, guix-patches <at> gnu.org
:
bug#67144
; Package
guix-patches
.
(Mon, 13 Nov 2023 05:06:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 67144 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/haskell-xyz.scm (ghc-strings): New variable.
Change-Id: Ia7df05ab2ff4c7e39d3f4105826658fcc27c24a2
---
gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index d6d858f6e1..0b8fbb8cd2 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -11898,6 +11898,29 @@ (define-public ghc-string-qq
and bytestrings.")
(license license:public-domain)))
+(define-public ghc-strings
+ (package
+ (name "ghc-strings")
+ (version "1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hackage-uri "strings" version))
+ (sha256
+ (base32 "1xz9v3w5s13yhk7iy9dw6i8s2jc6c0b1ci96dwmcq9a1n3l3ng4v"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "strings")))
+ (arguments
+ `(#:cabal-revision ("1"
+ "0jk1g71yzc5wpkr3vvhnxak61nqvisc5n90ggv6lmz4wqpqzdd0v")))
+ (home-page "https://hackage.haskell.org/package/strings/docs/Data-Strings.html")
+ (synopsis
+ "Functions for working with strings, including Text, ByteString, etc.")
+ (description
+ "This package provides various functions for working with strings, such as
+@code{join}, @code{split}, @code{toUppercase}, etc.")
+ (license license:expat)))
+
(define-public ghc-stringsearch
(package
(name "ghc-stringsearch")
--
2.41.0
Information forwarded
to
lars <at> 6xq.net, guix-patches <at> gnu.org
:
bug#67144
; Package
guix-patches
.
(Mon, 13 Nov 2023 05:06:03 GMT)
Full text and
rfc822 format available.
Message #17 received at 67144 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/haskell-apps.scm (mailctl): New variable.
Change-Id: I29386081322f421bafaaa95544e4e4b69cf2a8b3
---
gnu/packages/haskell-apps.scm | 39 +++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index ac22082088..b4c6d583c2 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2021 Stefan Reichör <stefan <at> xsteve.at>
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith <at> outlook.com>
;;; Copyright © 2022 David Thompson <dthompson2 <at> worcester.edu>
+;;; Copyright © 2023 VÖRÖSKŐI András <voroskoi <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -37,6 +38,7 @@
(define-module (gnu packages haskell-apps)
#:use-module (guix download)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module ((guix licenses) #:prefix license:)
@@ -670,6 +672,43 @@ (define-public kmonad
Wayland, and Linux console environments alike.")
(license license:expat))))
+(define-public mailctl
+ (package
+ (name "mailctl")
+ (version "0.9.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/pdobsan/mailctl/archive/refs/tags/"
+ version ".tar.gz"))
+ (snippet
+ #~(begin
+ (use-modules (guix build utils))
+ (substitute* "mailctl.cabal" (("3.8") "3.6"))))
+ (sha256
+ (base32 "0p96xprgrnf7vcn73rjnjj5ddgk2swywlp16mgqqvp5i4jwschvw"))))
+ (inputs (list ghc-aeson
+ ghc-base64
+ ghc-hsyslog
+ ghc-http-conduit
+ ghc-network-uri
+ ghc-optparse-applicative
+ ghc-pretty-simple
+ ghc-strings
+ ghc-twain
+ ghc-utf8-string
+ ghc-warp
+ ghc-yaml))
+ (build-system haskell-build-system)
+ (home-page "https://github.com/pdobsan/mailctl")
+ (synopsis "OAuth2 credentials renewal for @acronym{MUA} or @acronym{MTA}")
+ (description "Many IMAP/SMTP clients, like msmtp, fdm, isync, neomutt or mutt
+can use OAuth2 access tokens but lack the ability to renew and/or authorize OAuth2
+credentials. The purpose of mailctl is to provide these missing capabilities by
+acting as a kind of smart password manager. In particular, access token renewal
+happens automatically in the background transparent to the user.")
+ (license license:bsd-3)))
+
(define-public nixfmt
(package
(name "nixfmt")
--
2.41.0
This bug report was last modified 1 year and 6 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.