gnu: notmuch-addrlookup-c: Update to 8-1.88f156d.
* gnu/packages/mail.scm (notmuch-addrlookup-c): Update to 8-1.88f156d. [source]: Use git-fetch. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a79830d035
commit
a5d6b0a3d2
|
@ -727,45 +727,51 @@ ing, and tagging large collections of email messages.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public notmuch-addrlookup-c
|
(define-public notmuch-addrlookup-c
|
||||||
(package
|
;; This commit includes a compatibility fix for notmuch-0.25, and is not
|
||||||
(name "notmuch-addrlookup-c")
|
;; currently part of any release. Please update this package when
|
||||||
(version "7")
|
;; notmuch-addrlookup-c-9 is released.
|
||||||
(source (origin
|
(let ((commit "88f156d04990a71c6ad6fc2757b537b44e3c4d00")
|
||||||
(method url-fetch)
|
(revision "1")) ;Guix package revision
|
||||||
(uri (string-append
|
(package
|
||||||
"https://github.com/aperezdc/" name "/archive/v"
|
(name "notmuch-addrlookup-c")
|
||||||
version ".tar.gz"))
|
(version (string-append "8-" revision "."
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(string-take commit 7)))
|
||||||
(sha256
|
(source (origin
|
||||||
(base32
|
(method git-fetch)
|
||||||
"0rslg2ifgyhl6asv3yr1f62m9xjfcinv7i6qb07h2k217jqlmrri"))))
|
(uri (git-reference
|
||||||
(build-system gnu-build-system)
|
(url "https://github.com/aperezdc/notmuch-addrlookup-c.git")
|
||||||
(arguments
|
(commit commit)))
|
||||||
'(#:tests? #f ; no tests
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
#:make-flags (list "CC=gcc"
|
(sha256
|
||||||
(string-append "PREFIX="
|
(base32
|
||||||
(assoc-ref %outputs "out")))
|
"0v0wzs7qzy4n1hbql8s10qrwgalcxdzbxf8pj6cii1pv2jwmkxbm"))))
|
||||||
#:phases (modify-phases %standard-phases
|
(build-system gnu-build-system)
|
||||||
(delete 'configure)
|
(arguments
|
||||||
;; Remove vim code completion config, it's not needed to
|
'(#:tests? #f ; no tests
|
||||||
;; build (or be patched).
|
#:make-flags (list "CC=gcc"
|
||||||
(add-before 'patch-source-shebangs 'delete-ycm-file
|
(string-append "PREFIX="
|
||||||
(lambda _ (delete-file ".ycm_extra_conf.py")))
|
(assoc-ref %outputs "out")))
|
||||||
(replace 'install
|
#:phases (modify-phases %standard-phases
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(delete 'configure)
|
||||||
(let ((bin (string-append
|
;; Remove vim code completion config, it's not needed to
|
||||||
(assoc-ref outputs "out") "/bin")))
|
;; build (or be patched).
|
||||||
(install-file "notmuch-addrlookup" bin)))))))
|
(add-before 'patch-source-shebangs 'delete-ycm-file
|
||||||
(native-inputs
|
(lambda _ (delete-file ".ycm_extra_conf.py")))
|
||||||
`(("pkg-config" ,pkg-config)))
|
(replace 'install
|
||||||
(inputs
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
`(("glib" ,glib)
|
(let ((bin (string-append
|
||||||
("notmuch" ,notmuch)))
|
(assoc-ref outputs "out") "/bin")))
|
||||||
(home-page "https://github.com/aperezdc/notmuch-addrlookup-c")
|
(install-file "notmuch-addrlookup" bin)))))))
|
||||||
(synopsis "Address lookup tool for Notmuch")
|
(native-inputs
|
||||||
(description "This is an address lookup tool using a Notmuch database,
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("glib" ,glib)
|
||||||
|
("notmuch" ,notmuch)))
|
||||||
|
(home-page "https://github.com/aperezdc/notmuch-addrlookup-c")
|
||||||
|
(synopsis "Address lookup tool for Notmuch")
|
||||||
|
(description "This is an address lookup tool using a Notmuch database,
|
||||||
useful for email address completion.")
|
useful for email address completion.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public python-notmuch
|
(define-public python-notmuch
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue