gnu: emacs-discover-my-major: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-discover-my-major)[source]: Download
using git-fetch. Use new upstream URI.
[home-page]: Update to new home-page.
This commit is contained in:
Efraim Flashner 2020-04-01 09:16:24 +03:00
parent f12bd0bedd
commit 17264e362c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -13842,18 +13842,18 @@ throw a shell history.")
(version "1.0") (version "1.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (uri (git-reference
(string-append "https://github.com/steckerhalter/discover-my-major" (url "https://framagit.org/steckerhalter/discover-my-major.git/")
"/archive/" version ".tar.gz")) (commit version)))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl")))) "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-makey" ,emacs-makey))) `(("emacs-makey" ,emacs-makey)))
(home-page "https://github.com/steckerhalter/discover-my-major") (home-page "https://framagit.org/steckerhalter/discover-my-major/")
(synopsis "Discover key bindings for the current Emacs major mode") (synopsis "Discover key bindings for the current Emacs major mode")
(description "This package provides allows to discover key bindings and (description "This package provides allows to discover key bindings and
their meaning for the current Emacs major-mode.") their meaning for the current Emacs major-mode.")