gnu: emacs-shell-switcher: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-shell-switcher)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-04 19:26:46 +02:00
parent b3093d1c00
commit bf5626136e
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -2628,13 +2628,13 @@ the speedbar window.")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/DamienCassou/shell-switcher"
"/archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/DamienCassou/shell-switcher.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
(base32 "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"))))
(build-system emacs-build-system)
(home-page "https://github.com/DamienCassou/shell-switcher")
(synopsis "Provide fast switching between shell buffers")