gnu: emacs-git-messenger: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-git-messenger)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:30:23 +02:00
parent 106fe7edb9
commit d4e3d212bc
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 7 deletions

View File

@ -7720,14 +7720,13 @@ editing RPM spec files.")
(version "0.18") (version "0.18")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/syohex/emacs-git-messenger/archive/" (url "https://github.com/syohex/emacs-git-messenger.git")
version ".tar.gz")) (commit version)))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "04fnby2nblk8l70gv09asxkmnn53fh1pdfs77ix44npp99fyw8ix"))))
"17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-popup" ,emacs-popup))) `(("emacs-popup" ,emacs-popup)))