gnu: emacs-d-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-d-mode)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
5c54debc2f
commit
1e2d1712ea
|
@ -1849,15 +1849,15 @@ evaluations. The entry point is @code{M-x build-farm} command.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-d-mode")
|
(name "emacs-d-mode")
|
||||||
(version "2.0.9")
|
(version "2.0.9")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
|
(uri (git-reference
|
||||||
"archive/" version ".tar.gz"))
|
(url "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj"))))
|
||||||
"127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-undercover" ,emacs-undercover)))
|
`(("emacs-undercover" ,emacs-undercover)))
|
||||||
|
|
Loading…
Reference in New Issue