gnu: emacs-datetime: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-datetime)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
2b05c9ad5a
commit
95994b0212
|
@ -9624,15 +9624,15 @@ navigate and display hierarchy structures.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-datetime")
|
(name "emacs-datetime")
|
||||||
(version "0.3")
|
(version "0.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/doublep/datetime/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/doublep/datetime.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0fdswqi53qx924lib7nd9dazn0916xf1ybrh3bcn3f8cn6b8ikg5"))))
|
||||||
"12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/doublep/datetime/")
|
(home-page "https://github.com/doublep/datetime/")
|
||||||
(synopsis "Library to work with dates in Emacs")
|
(synopsis "Library to work with dates in Emacs")
|
||||||
|
|
Loading…
Reference in New Issue