guix-commits
[Top][All Lists]
Advanced

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

133/203: gnu: emacs-finalize: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit 98c32a1033802238f123f1b8c8db32850692bbdc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:34:54 2019 +0200

    gnu: emacs-finalize: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-finalize)[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 39bc7c8..be59914 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8945,13 +8945,13 @@ match and total match information in the mode-line in 
various search modes.")
   (version "2.0.0")
   (source
     (origin
-      (method url-fetch)
-      (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/";
-                          version ".tar.gz"))
-      (file-name (string-append name "-" version ".tar.gz"))
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/skeeto/elisp-finalize.git";)
+            (commit version)))
+      (file-name (git-file-name name version))
       (sha256
-        (base32
-         "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
+        (base32 "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"))))
   (build-system emacs-build-system)
   (propagated-inputs
     `(("emacs-cl-generic" ,emacs-cl-generic)))



reply via email to

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