guix-commits
[Top][All Lists]
Advanced

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

130/203: gnu: emacs-terraform-mode: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

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

    gnu: emacs-terraform-mode: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-terraform-mode)[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 0b65146..1d2153f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8685,14 +8685,13 @@ highlighting and indentation support.")
     (version "0.06")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/syohex/emacs-terraform-mode/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/syohex/emacs-terraform-mode.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
+        (base32 "05hn8kskx9lcgn7bzgam99c629zlryir2pickwrqndacjrqpdykx"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-hcl-mode" ,emacs-hcl-mode)))



reply via email to

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