guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

76/203: gnu: emacs-ht: Don't use unstable tarball.


From: guix-commits
Subject: 76/203: gnu: emacs-ht: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:22 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 76a18a0cbb4cc4c5af922259843794f07a11f5e6
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:23:21 2019 +0200

    gnu: emacs-ht: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-ht)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/emacs-xyz.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a8c671d..60166b6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5949,14 +5949,13 @@ procedures for emacs-lisp-mode.")
     (version "2.2")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/Wilfred/ht.el/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Wilfred/ht.el.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0fsi27gdrh2dgwdbq43vnw5sz25war6shlxaclr60fl7krpxjkzf"))))
+        (base32 "1p3qa7g0wa0wbviv2f8bda39cjys3naayk5xjm3nxxmqsyy8papx"))))
     (build-system emacs-build-system)
     (propagated-inputs `(("emacs-dash" ,emacs-dash)))
     (home-page "https://github.com/Wilfred/ht.el";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]