guix-commits
[Top][All Lists]
Advanced

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

170/203: gnu: emacs-sourcemap: Don't use unstable tarball.


From: guix-commits
Subject: 170/203: gnu: emacs-sourcemap: 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 339eef40f85a08609bb711557a67945173b490cb
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:37:26 2019 +0200

    gnu: emacs-sourcemap: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-sourcemap)[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 c78125a..b306a03 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9909,13 +9909,13 @@ your Emacs.")
     (version "0.03")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/";
-                           version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/syohex/emacs-sourcemap.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
+        (base32 "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/syohex/emacs-sourcemap";)
     (synopsis "Sourcemap parser")



reply via email to

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