mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 02:50:20 +01:00
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.
This commit is contained in:
parent
3abaae5708
commit
b625752d03
1 changed files with 9 additions and 10 deletions
|
@ -5350,16 +5350,15 @@ for search-based navigation of buffers.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-helm-projectile")
|
(name "emacs-helm-projectile")
|
||||||
(version "0.14.0")
|
(version "0.14.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/bbatsov/helm-projectile/archive/v"
|
(uri (git-reference
|
||||||
version
|
(url "https://github.com/bbatsov/helm-projectile.git")
|
||||||
".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4"))))
|
||||||
"19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-dash" ,emacs-dash)
|
`(("emacs-dash" ,emacs-dash)
|
||||||
|
|
Loading…
Add table
Reference in a new issue