diff options
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -128,6 +128,34 @@ Debbugs bug tracker's SOAP service.") (license license:gpl3+)))) +(define-public guile-email + (let ((commit "fa52eac55e5946db89621a6c583d2aa357864dee") + (revision "1")) + (package + (name "guile-email") + (version (git-version "0.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.systemreboot.net/guile-email") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1037mbz7qd9bzaqp8ysyhnl9ipd97fmj3b9jr8qfzx9179vvsj63")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("autoconf" ,autoconf) + ("automake" ,automake))) + (inputs + `(("guile" ,guile-2.2.4))) + (home-page "https://git.systemreboot.net/guile-email") + (synopsis "Guile email parser") + (description "Guile email parser") + (license license:agpl3+)))) + (package (name "mumi") (version "0.0.0") @@ -135,6 +163,7 @@ Debbugs bug tracker's SOAP service.") (build-system gnu-build-system) (inputs `(("guile-debbugs" ,guile-debbugs-next) + ("guile-email" ,guile-email) ("guile-syntax-highlight" ,guile-syntax-highlight) ("mailutils" ,mailutils-next) ("guile" ,guile-2.2.4))) |