guix-commits
[Top][All Lists]
Advanced

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

168/203: gnu: emacs-elisp-refs: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit cbd18c5ca7087ef76e305091b797cdf9b23ec897
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:37:08 2019 +0200

    gnu: emacs-elisp-refs: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-elisp-refs)[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 8ea65b4..5dca5d1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9757,13 +9757,13 @@ continue.")
     (version "1.3")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/";
-                           version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Wilfred/elisp-refs.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
+        (base32 "0w7k91xf69zc0zkjrw8h8sjdjf9xq9qs5zhvajhd718lzf93564b"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-dash" ,emacs-dash)



reply via email to

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