mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: emacs-chronometrist: Update to 0.5.3.
* gnu/packages/emacs-xyz.scm (emacs-chronometrist): Update to 0.5.3. [source]: Update URL. [arguments]: Add phases. [propagated-inputs]: Add `emacs-ts'. [home-page]: Update URL.
This commit is contained in:
parent
32e75c78f8
commit
f01c3c41be
1 changed files with 27 additions and 5 deletions
|
@ -2035,21 +2035,43 @@ (define-public emacs-caps-lock
|
||||||
(define-public emacs-chronometrist
|
(define-public emacs-chronometrist
|
||||||
(package
|
(package
|
||||||
(name "emacs-chronometrist")
|
(name "emacs-chronometrist")
|
||||||
(version "0.4.3")
|
(version "0.5.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://framagit.org/contrapunctus/chronometrist.git")
|
(url "https://github.com/contrapunctus-1/chronometrist.git")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ljjqzghcap4admv0hvw6asm148b80mfgjgxjjcw6qc95fkjjjlr"))))
|
(base32 "0jz35972m372kx9x8mgf42zhzdw2w9wv2ri52chfb2fin4bh1biy"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'chdir-elisp
|
||||||
|
;; Elisp directory is not in root of the source.
|
||||||
|
(lambda _
|
||||||
|
(chdir "elisp")
|
||||||
|
#t))
|
||||||
|
(add-after 'install 'install-doc
|
||||||
|
;; Documentation consists of several Markdown files.
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(doc (string-append out
|
||||||
|
"/share/doc/emacs-chronometrist-"
|
||||||
|
,version)))
|
||||||
|
(with-directory-excursion "../doc"
|
||||||
|
(for-each (lambda (f) (install-file f doc))
|
||||||
|
(cons* "../UNLICENSE"
|
||||||
|
"../WTFPL"
|
||||||
|
(find-files "." "\\.md$")))))
|
||||||
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-dash" ,emacs-dash)
|
`(("emacs-dash" ,emacs-dash)
|
||||||
("emacs-s" ,emacs-s)))
|
("emacs-s" ,emacs-s)
|
||||||
(home-page "https://framagit.org/contrapunctus/chronometrist")
|
("emacs-ts" ,emacs-ts)))
|
||||||
|
(home-page "https://github.com/contrapunctus-1/chronometrist")
|
||||||
(synopsis "Time tracker for Emacs")
|
(synopsis "Time tracker for Emacs")
|
||||||
(description "Chronometrist is a time tracker in Emacs, largely modelled
|
(description "Chronometrist is a time tracker in Emacs, largely modelled
|
||||||
after the Android application, @emph{A Time Tracker}.
|
after the Android application, @emph{A Time Tracker}.
|
||||||
|
|
Loading…
Reference in a new issue