mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
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.
This commit is contained in:
parent
b206798dd3
commit
ef138474f1
1 changed files with 9 additions and 9 deletions
|
@ -6773,15 +6773,15 @@ (define-public emacs-pyim-basedict
|
||||||
(package
|
(package
|
||||||
(name "emacs-pyim-basedict")
|
(name "emacs-pyim-basedict")
|
||||||
(version "0.3.1")
|
(version "0.3.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/tumashu/pyim-basedict/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/tumashu/pyim-basedict.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0576r8ap9gp91ycjf1d47pn13kxp0f9fysn09zlq44hr0s1y2y5d"))))
|
||||||
"0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/tumashu/pyim-basedict")
|
(home-page "https://github.com/tumashu/pyim-basedict")
|
||||||
(synopsis "Input method dictionary of pyim")
|
(synopsis "Input method dictionary of pyim")
|
||||||
|
|
Loading…
Reference in a new issue