mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: emacs-calfw: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-calfw)[source]: Download using git-fetch.
This commit is contained in:
parent
b4f96f3b3b
commit
39a46a1f10
1 changed files with 6 additions and 6 deletions
|
@ -1346,14 +1346,14 @@ (define-public emacs-calfw
|
||||||
(version "1.6")
|
(version "1.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/kiwanami/emacs-calfw/archive/v"
|
(url "https://github.com/kiwanami/emacs-calfw.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1zr91xr0f1xfcv78yxka8vs5ximmq2ixmqf2pkb57kwwnxlypq4i"))))
|
"0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-howm" ,emacs-howm)))
|
`(("emacs-howm" ,emacs-howm)))
|
||||||
|
|
Loading…
Reference in a new issue