mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
gnu: libesmtp: Build from Git sources.
* gnu/packages/mail.scm (libesmtp)[source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf, automake, and libtool.
This commit is contained in:
parent
5434f6f893
commit
9636591edf
1 changed files with 10 additions and 11 deletions
|
@ -2317,19 +2317,18 @@ (define-public libesmtp
|
||||||
(version "1.0.6")
|
(version "1.0.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (list (string-append "https://pkgs.fedoraproject.org/repo/pkgs/"
|
(uri (git-reference
|
||||||
"libesmtp/libesmtp-" version ".tar.bz2/"
|
(url "https://github.com/libesmtp/libESMTP")
|
||||||
"bf3915e627fd8f35524a8fdfeed979c8/libesmtp-"
|
(commit (string-append "v" version))))
|
||||||
version ".tar.bz2")
|
(file-name (git-file-name name version))
|
||||||
;; XXX This site is offline, so we fetch Fedora's cached copy
|
|
||||||
;; of the source tarball.
|
|
||||||
(string-append "http://www.stafford.uklinux.net/libesmtp/libesmtp-"
|
|
||||||
version ".tar.bz2")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0pylvjpdf92i0j9bl43sg37k1ksbzk1k7cgdk91kkcc0krh0r09g"))))
|
||||||
"02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("openssl" ,openssl)))
|
`(("openssl" ,openssl)))
|
||||||
(home-page "http://www.stafford.uklinux.net/libesmtp/")
|
(home-page "http://www.stafford.uklinux.net/libesmtp/")
|
||||||
|
|
Loading…
Reference in a new issue