gnu: emacs-typescript-mode: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-typescript-mode)[source]: Use GIT-FETCH and GIT-FILE-NAME.
master
Brian Leung 2019-06-15 03:05:37 +02:00 committed by Nicolas Goaziou
parent 81547708cd
commit ac7b33eec7
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 6 additions and 6 deletions

View File

@ -5134,14 +5134,14 @@ features:
(name "emacs-typescript-mode") (name "emacs-typescript-mode")
(version "0.3") (version "0.3")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/ananthakumaran/typescript.el" (url "https://github.com/ananthakumaran/typescript.el")
"/archive/v" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj")) "002f1xfhq43fjaqliwrgxspryfahpa82va5dw3p8kwil2xwvc6mh"))))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/ananthakumaran/typescript.el") (home-page "https://github.com/ananthakumaran/typescript.el")
(synopsis "Emacs major mode for editing Typescript code") (synopsis "Emacs major mode for editing Typescript code")