gnu: emacs-helm-projectile: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-helm-projectile)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:22:35 +02:00
parent 3abaae5708
commit b625752d03
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 10 deletions

View File

@ -5350,16 +5350,15 @@ for search-based navigation of buffers.")
(package
(name "emacs-helm-projectile")
(version "0.14.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/bbatsov/helm-projectile/archive/v"
version
".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bbatsov/helm-projectile.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)