[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: emacs-markdown-mode: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
01/02: gnu: emacs-markdown-mode: Don't use unstable tarball. |
Date: |
Tue, 24 Sep 2019 13:55:43 -0400 (EDT) |
leungbk pushed a commit to branch master
in repository guix.
commit 987d7b1c67c7fa38582802c5b0bbc1eda83df838
Author: Brian Leung <address@hidden>
Date: Tue Sep 24 18:49:18 2019 +0200
gnu: emacs-markdown-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-markdown-mode)[source]: Use GIT-FETCH
and GIT-FILE-NAME.
---
gnu/packages/emacs-xyz.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 92c91a0..54cdbc0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5822,14 +5822,14 @@ provides the following features:
(name "emacs-markdown-mode")
(version "2.3")
(source (origin
- (method url-fetch)
- (uri (string-append "https://raw.githubusercontent.com/jrblevin"
- "/markdown-mode/v" version
- "/markdown-mode.el"))
- (file-name (string-append "markdown-mode-" version ".el"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jrblevin/markdown-mode.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
+ "1zm1j4w0f3h01bmmpsv4j4mh6i13nnl8fcqlj2hsa1ncy1lgi8q7"))))
(build-system emacs-build-system)
(home-page "http://jblevins.org/projects/markdown-mode/")
(synopsis "Emacs Major mode for Markdown files")