mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: emacs-ctable: Update to 0.1.3.
* gnu/packages/emacs-xyz.scm (emacs-ctable): Update to 0.1.3. [arguments]<#:exclude>: Exclude unnecessary file leading to a build error.
This commit is contained in:
parent
eb9ea4c227
commit
e20011fda4
1 changed files with 9 additions and 3 deletions
|
@ -24240,10 +24240,12 @@ (define-public emacs-e2wm
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-ctable
|
||||
(let ((commit "b8830d1ca95abb100a81bc32011bd17d5ecba000"))
|
||||
;; Latest release is not tagged. Use commit matching version bump.
|
||||
(let ((commit "04dbcddeba1da1f39e885bc0d36240ff37d829e9")
|
||||
(version "0.1.3"))
|
||||
(package
|
||||
(name "emacs-ctable")
|
||||
(version (git-version "0.1.2" "1" commit))
|
||||
(version version)
|
||||
(home-page "https://github.com/kiwanami/emacs-ctable")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
|
@ -24252,9 +24254,13 @@ (define-public emacs-ctable
|
|||
(commit commit)))
|
||||
(sha256
|
||||
(base32
|
||||
"0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"))
|
||||
"16yrx1z44xs24z2a0gwzf1xhhks1wrzafc5ihf6lbw843rq2jar0"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
;; XXX: The following file does not compile. It is not useful, so
|
||||
;; remove it.
|
||||
(list #:exclude #~(cons "^test-ctable\\.el" %default-exclude)))
|
||||
(synopsis "Table component for Emacs Lisp")
|
||||
(description "This program is a table component for Emacs Lisp. Other
|
||||
programs can use this table component for the application UI.")
|
||||
|
|
Loading…
Reference in a new issue