guix-commits
[Top][All Lists]
Advanced

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

93/203: gnu: emacs-pyim-basedict: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit ef138474f1b3e2b8f725cae51e32f24e298e5118
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:26:18 2019 +0200

    gnu: emacs-pyim-basedict: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-pyim-basedict)[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 4fc4944..f2a8323 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6773,15 +6773,15 @@ function to be used by other frontend programs.")
   (package
     (name "emacs-pyim-basedict")
     (version "0.3.1")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/tumashu/pyim-basedict/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tumashu/pyim-basedict.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0576r8ap9gp91ycjf1d47pn13kxp0f9fysn09zlq44hr0s1y2y5d"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/tumashu/pyim-basedict";)
     (synopsis "Input method dictionary of pyim")



reply via email to

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