gnu: emacs-el2org: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-el2org)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
ef138474f1
commit
ca8ddaaa66
|
@ -6841,15 +6841,15 @@ posframe is a child frame displayed within its root window's buffer.
|
||||||
(package
|
(package
|
||||||
(name "emacs-el2org")
|
(name "emacs-el2org")
|
||||||
(version "0.6.0")
|
(version "0.6.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/tumashu/el2org/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/tumashu/el2org.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
|
(base32 "0mzddqny6wpg1fv99xrvlv7rxmaifvmy5bvj4in4pldhm4cx4q1b"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/tumashu/el2org")
|
(home-page "https://github.com/tumashu/el2org")
|
||||||
(synopsis "Convert Emacs-lisp file to org file")
|
(synopsis "Convert Emacs-lisp file to org file")
|
||||||
|
|
Loading…
Reference in New Issue