gnu: emacs-pkg-info: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-pkg-info)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
d95ec770db
commit
45c6a66414
1 changed files with 9 additions and 9 deletions
|
@ -4455,15 +4455,15 @@ (define-public emacs-pkg-info
|
||||||
(package
|
(package
|
||||||
(name "emacs-pkg-info")
|
(name "emacs-pkg-info")
|
||||||
(version "0.6")
|
(version "0.6")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/lunaryorn/pkg-info.el/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/lunaryorn/pkg-info.el.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"))))
|
||||||
"1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs `(("emacs-epl" ,emacs-epl)))
|
(propagated-inputs `(("emacs-epl" ,emacs-epl)))
|
||||||
(home-page "https://github.com/lunaryorn/pkg-info.el")
|
(home-page "https://github.com/lunaryorn/pkg-info.el")
|
||||||
|
|
Loading…
Reference in a new issue