gnu: emacs-counsel-bbdb: Use GitHub repository.
* gnu/packages/emacs-xyz.scm (emacs-counsel-bbdb)[version]: Use regular upstream version instead of MELPA's. [source]: Fetch from GitHub.master
parent
98fb3ce8eb
commit
7c2e063245
|
@ -1955,21 +1955,22 @@ mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
|
||||||
|
|
||||||
(define-public emacs-counsel-bbdb
|
(define-public emacs-counsel-bbdb
|
||||||
(package
|
(package
|
||||||
(name "emacs-counsel-bbdb")
|
(name "emacs-counsel-bbdb")
|
||||||
(version "20181128.1320")
|
(version "0.0.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://melpa.org/packages/counsel-bbdb-"
|
(uri (git-reference
|
||||||
version ".el"))
|
(url "https://github.com/redguardtoo/counsel-bbdb")
|
||||||
(sha256
|
(commit version)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"03g3lk8hz9a17vf5r16x054bhyk8xsbnfq0div8ig13fmhqi159q"))))
|
(sha256
|
||||||
(build-system emacs-build-system)
|
(base32 "0bki658mvlchqf3prkzxz4217a95cxm58c1qmf84yp2n8h6gd0d8"))))
|
||||||
(propagated-inputs `(("emacs-ivy" ,emacs-ivy)))
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/redguardtoo/counsel-bbdb")
|
(propagated-inputs `(("emacs-ivy" ,emacs-ivy)))
|
||||||
(synopsis "Ivy interface for BBDB")
|
(home-page "https://github.com/redguardtoo/counsel-bbdb")
|
||||||
(description "This Ivy extension enables the use of @code{ivy-mode} to input
|
(synopsis "Ivy interface for BBDB")
|
||||||
|
(description "This Ivy extension enables the use of @code{ivy-mode} to input
|
||||||
email addresses from BBDB efficiently. The main functions are:
|
email addresses from BBDB efficiently. The main functions are:
|
||||||
@table @code
|
@table @code
|
||||||
@item counsel-bbdb-complete-mail to input email addresses;
|
@item counsel-bbdb-complete-mail to input email addresses;
|
||||||
|
@ -1979,7 +1980,7 @@ email addresses from BBDB efficiently. The main functions are:
|
||||||
Since @code{counsel-bbdb} is based on @code{ivy-mode}, all Ivy key bindings
|
Since @code{counsel-bbdb} is based on @code{ivy-mode}, all Ivy key bindings
|
||||||
are supported. For example, after @samp{C-u M-x counsel-bbdb-complete-mail},
|
are supported. For example, after @samp{C-u M-x counsel-bbdb-complete-mail},
|
||||||
you can press @samp{C-M-n} to input multiple email addresses.")
|
you can press @samp{C-M-n} to input multiple email addresses.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-bluetooth
|
(define-public emacs-bluetooth
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue