gnu: emacs-bui: Update to 1.2.0.
* gnu/packages/emacs.scm (emacs-bui): Update to 1.2.0. Change source from github to notabug.
This commit is contained in:
parent
5bfa7510d1
commit
5d78cf0b6c
|
@ -1635,20 +1635,20 @@ and stored in memory.")
|
||||||
(define-public emacs-bui
|
(define-public emacs-bui
|
||||||
(package
|
(package
|
||||||
(name "emacs-bui")
|
(name "emacs-bui")
|
||||||
(version "1.1.0")
|
(version "1.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/alezost/bui.el/archive/v"
|
(url "https://notabug.org/alezost/emacs-bui.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
|
"0ixia5s41f2nbal3wsixacbhbc0mk9yb75ir1amqakip30sq4apv"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("dash" ,emacs-dash)))
|
`(("dash" ,emacs-dash)))
|
||||||
(home-page "https://github.com/alezost/bui.el")
|
(home-page "https://notabug.org/alezost/emacs-bui")
|
||||||
(synopsis "Buffer interface library for Emacs")
|
(synopsis "Buffer interface library for Emacs")
|
||||||
(description
|
(description
|
||||||
"BUI (Buffer User Interface) is a library for making @code{list} and
|
"BUI (Buffer User Interface) is a library for making @code{list} and
|
||||||
|
|
Loading…
Reference in New Issue