diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-31 03:50:12 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:58 +0200 |
commit | f233efa74d9978afd398e332adbbc09f1906171d (patch) | |
tree | b792f22c36bcebc233bc5c99564bc40647d88a7f | |
parent | 09059c111836fdf30a5afed919e0101c6e8b63f7 (diff) | |
download | guix-f233efa74d9978afd398e332adbbc09f1906171d.tar.gz |
gnu: emacs-es-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-es-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 b80245a6a1..a4bf7feb2b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2175,15 +2175,15 @@ port of @code{cl-spark} to Emacs Lisp.") (package (name "emacs-es-mode") (version "4.3.0") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/dakrone/es-mode/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dakrone/es-mode.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qhfnd5anp5qrmravv7ks5ix763xnki2f5jwcyj70qyxwr0l60cg")))) (build-system emacs-build-system) (propagated-inputs ;; The version of org in Emacs 24.5 is not sufficient, and causes tables |