me
/
guix
Archived
1
0
Fork 0

gnu: Add guile-email-latest.

* gnu/packages/guile-xyz.scm (guile-email-latest): New variable.
master
Ricardo Wurmus 2020-12-06 12:43:43 +01:00
parent d9d6203b7a
commit 8b3b1f34e6
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -1178,6 +1178,29 @@ Extensions) compliant email messages and reading emails from the mbox
format.")
(license license:agpl3+)))
(define-public guile-email-latest
(let ((commit "03e9cacb826bd4a56d3d834fe5526e497d7c57eb")
(revision "1"))
(package
(inherit guile-email)
(name "guile-email-latest")
(version (git-version "0.2.2" 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
"1a15gdlbmzx220xg82fgyd0zk2wqn13ddmzs13nhgfzx8d5cns68"))))
(native-inputs
`(("pkg-config" ,pkg-config)
("autoconf" ,autoconf)
("automake" ,automake)
("texinfo" ,texinfo))))))
(define-public guile2.2-email
(package
(inherit guile-email)