guix-commits
[Top][All Lists]
Advanced

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

58/203: gnu: emacs-iedit: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit f646bf1acc5869d8c8c908a06ba17e7b3f4f52bc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Apr 5 04:16:12 2019 +0200

    gnu: emacs-iedit: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-iedit)[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 81c4458..53bd447 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4252,13 +4252,13 @@ highlighted.  Pressing that character will switch to 
that window.")
     (version "0.9.9.9")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/victorhge/iedit/archive/v";
-                           version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/victorhge/iedit.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
+        (base32 "1pwkrm98vlpzsy5iwwfksdaz3zzyi7bvdf5fglhsn4ssf47p787g"))))
     (build-system emacs-build-system)
     (home-page "http://www.emacswiki.org/emacs/Iedit";)
     (synopsis "Edit multiple regions in the same way simultaneously")



reply via email to

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