guix-commits
[Top][All Lists]
Advanced

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

01/10: gnu: emacs-ag: Don't use unstable tarball.


From: guix-commits
Subject: 01/10: gnu: emacs-ag: Don't use unstable tarball.
Date: Wed, 27 Mar 2019 17:05:34 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 3cf9a85ba7c1ae5d2ef6f8b05972262f7a620cf3
Author: Efraim Flashner <address@hidden>
Date:   Wed Mar 27 22:30:27 2019 +0200

    gnu: emacs-ag: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-ag)[source]: Download using
    git-fetch.
---
 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 7dd3c07..439bd58 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1186,14 +1186,14 @@ than @code{electric-indent-mode}.")
     (name "emacs-ag")
     (version "0.47")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/Wilfred/ag.el/archive/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/Wilfred/ag.el.git";)
+                     (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
+                "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r"))))
     (build-system emacs-build-system)
     (arguments
      `(#:phases



reply via email to

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