gnu: emacs-mastodon: Update to 1.0.6.
* gnu/packages/emacs-xyz.scm (emacs-mastodon): Update to 1.0.6. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
378dfcf306
commit
d6afcffb21
1 changed files with 30 additions and 33 deletions
|
@ -32828,40 +32828,37 @@ time.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-mastodon
|
(define-public emacs-mastodon
|
||||||
;; No release in ~1 year, hence this snapshot.
|
|
||||||
(let ((commit "20dec8871c9bb5f5e418bfc197e7533b5e3065e3")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "emacs-mastodon")
|
(name "emacs-mastodon")
|
||||||
(version (git-version "1.0.0" revision commit))
|
(version "1.0.6")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://codeberg.org/martianh/mastodon.el")
|
(url "https://codeberg.org/martianh/mastodon.el")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1z5lmzxhindxa0f6qi6z361k9smqcz68alr6w6jbmwg279qmk8jj"))))
|
||||||
"15cfjny99yw5frdp8nlyazlwgscvfvbinsj0fbdfprxf50k2zjs6"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases
|
(list
|
||||||
#~(modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
;; Move the source files to the top level, which is included in
|
;; Move the source files to the top level, which is
|
||||||
;; the EMACSLOADPATH.
|
;; included in the EMACSLOADPATH.
|
||||||
(add-after 'unpack 'move-source-files
|
(add-after 'unpack 'move-source-files
|
||||||
(lambda _
|
(lambda _
|
||||||
(let ((el-files (find-files "./lisp" ".*\\.el$")))
|
(let ((el-files (find-files "./lisp" ".*\\.el$")))
|
||||||
(for-each (lambda (f)
|
(for-each (lambda (f)
|
||||||
(rename-file f (basename f)))
|
(rename-file f
|
||||||
|
(basename f)))
|
||||||
el-files)))))))
|
el-files)))))))
|
||||||
(propagated-inputs
|
(propagated-inputs (list emacs-request emacs-ts emacs-persist))
|
||||||
(list emacs-request emacs-ts emacs-persist))
|
|
||||||
(home-page "https://codeberg.org/martianh/mastodon.el")
|
(home-page "https://codeberg.org/martianh/mastodon.el")
|
||||||
(synopsis "Emacs client for Mastodon")
|
(synopsis "Emacs client for Mastodon")
|
||||||
(description "@code{mastodon.el} is an Emacs client for Mastodon, the
|
(description "@code{mastodon.el} is an Emacs client for Mastodon, the
|
||||||
federated microblogging social network.")
|
federated microblogging social network.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-ebdb
|
(define-public emacs-ebdb
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue