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