me
/
guix
Archived
1
0
Fork 0

gnu: emacs-company-irony: Update to 1.1.1.

* gnu/packages/emacs-xyz.scm (emacs-company-irony): Update to 1.1.1.
[inputs]: Re-order alphabetically.
[descrption]: Properly capitalize.
master
Nicolas Goaziou 2021-06-06 09:06:40 +02:00
parent 36fd42ded2
commit 04beee1632
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 15 additions and 14 deletions

View File

@ -6024,22 +6024,23 @@ described on the homepage.")
(define-public emacs-company-irony
(package
(name "emacs-company-irony")
(version "1.1.0")
(source (origin
(version "1.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Sarcasm/company-irony")
(commit (string-append "v" version))))
(sha256 (base32
"1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
(sha256
(base32 "1d3jw0d4zymznri86a5iixyxnw16jzkkrbhrh657ys73189c1c73"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(inputs
`(("emacs-irony-mode" ,emacs-irony-mode)
("emacs-company" ,emacs-company)))
(synopsis "C++ completion backend for Company using irony-mode")
(description "This backend for company-mode allows for C++ code completion
with irony-mode using clang-tooling.")
`(("emacs-company" ,emacs-company)
("emacs-irony-mode" ,emacs-irony-mode)))
(synopsis "C++ completion backend for Company using Irony mode")
(description "This backend for Company allows for C++ code completion
with Irony mode using Clang tooling.")
(home-page "https://github.com/Sarcasm/company-irony")
(license license:gpl3+)))