guix-commits
[Top][All Lists]
Advanced

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

11/203: gnu: emacs-git-gutter: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit 1acdb763a03ab062aa176b8aeb54dfe02a592097
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Mar 31 03:48:52 2019 +0200

    gnu: emacs-git-gutter: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-git-gutter)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/emacs-xyz.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7e3f6d0..ae12031 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2025,15 +2025,15 @@ files and directories.")
   (package
     (name "emacs-git-gutter")
     (version "0.90")
-    (source (origin
-             (method url-fetch)
-             (uri (string-append
-                   "https://github.com/syohex/"; name "/archive/"
-                   version ".tar.gz"))
-             (file-name (string-append name "-" version ".tar.gz"))
-             (sha256
-              (base32
-               "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/syohex/emacs-git-gutter.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1abagq0psip7cgsqbfjv72qy60ywsny0ibsfcn74ldj6a9v17mz5"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/syohex/emacs-git-gutter";)
     (synopsis "See and manage hunks of text in a version control system")



reply via email to

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