guix-commits
[Top][All Lists]
Advanced

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

124/203: gnu: emacs-evil-smartparens: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit 57a07f9cb6a1fedd3e96557ced05a8fa40ae0479
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:32:53 2019 +0200

    gnu: emacs-evil-smartparens: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-evil-smartparens)[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 39be50d..8353e41 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8336,14 +8336,13 @@ evil mode using @kbd{%}.  It is a port of 
@code{matchit} for Vim.")
     (version "0.4.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/expez/evil-smartparens/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/expez/evil-smartparens.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
+        (base32 "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-evil" ,emacs-evil)



reply via email to

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