diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-30 21:00:06 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:57 +0200 |
commit | 1e2d1712ea6ff37b4ca2e0f4c79e09cfa14ff050 (patch) | |
tree | 47c0c097a3c344c9beaf9d5666eccdd29fe28f0d | |
parent | 5c54debc2feef4732ddc95c83effdeba7c322b34 (diff) | |
download | patches-1e2d1712ea6ff37b4ca2e0f4c79e09cfa14ff050.tar patches-1e2d1712ea6ff37b4ca2e0f4c79e09cfa14ff050.tar.gz |
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.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3a21c81f59..186ad73f97 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1849,15 +1849,15 @@ evaluations. The entry point is @code{M-x build-farm} command.") (package (name "emacs-d-mode") (version "2.0.9") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/" - "archive/" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-undercover" ,emacs-undercover))) |