guix-commits
[Top][All Lists]
Advanced

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

08/15: gnu: emacs-auto-complete: Don't use unstable tarball.


From: guix-commits
Subject: 08/15: gnu: emacs-auto-complete: Don't use unstable tarball.
Date: Tue, 26 Nov 2019 13:58:11 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit ed1ff94fe23dbe28ce39fa9c7be5bec6c1ae29dc
Author: Efraim Flashner <address@hidden>
Date:   Tue Nov 26 20:44:58 2019 +0200

    gnu: emacs-auto-complete: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-auto-complete)[source]: Download
    using git-fetch.
---
 gnu/packages/emacs-xyz.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 415814b..7d36c6d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8135,13 +8135,14 @@ by zenburn, sinburn and similar themes, but slowly 
diverging from them.")
     (version "1.5.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/auto-complete/";
-                           "auto-complete/archive/v" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/auto-complete/auto-complete.git";)
+              (commit (string-append "v" version))))
        (sha256
         (base32
-         "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
-       (file-name (string-append name "-" version ".tar.gz"))))
+         "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"))
+       (file-name (git-file-name name version))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-popup" ,emacs-popup)))



reply via email to

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