gnu: emacs-idris-mode: Use recent git checkout.
* gnu/packages/emacs-xyz.scm (emacs-idris-mode)[source]: Use git-fetch. [version]: Include revision and commit.
This commit is contained in:
parent
535a69e9e5
commit
ac30257600
|
@ -8534,29 +8534,32 @@ key. Optionally, a mouse pop-up can be added by binding
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-idris-mode
|
(define-public emacs-idris-mode
|
||||||
(package
|
(let ((commit "acc8835449475d7cd205aba213fdd3d41c38ba40")
|
||||||
(name "emacs-idris-mode")
|
(revision "0"))
|
||||||
(version "0.9.19")
|
(package
|
||||||
(source
|
(name "emacs-idris-mode")
|
||||||
(origin
|
(version (git-version "0.9.19" revision commit))
|
||||||
(method url-fetch)
|
(source
|
||||||
(uri (string-append
|
(origin
|
||||||
"http://stable.melpa.org/packages/idris-mode-"
|
(method git-fetch)
|
||||||
version ".tar"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/idris-hackers/idris-mode.git")
|
||||||
(base32
|
(commit commit)))
|
||||||
"16hl2s22l3wc9drnwzw6hn7xrm49ml9lii0s6k218dgahdgsncmf"))))
|
(file-name (git-file-name name commit))
|
||||||
(build-system emacs-build-system)
|
(sha256
|
||||||
(propagated-inputs
|
(base32
|
||||||
`(("emacs-prop-menu" ,emacs-prop-menu)))
|
"0n9xbknc68id0mf8hbfmawi8qpvrs47ix807sk9ffv2g3ik32kk6"))))
|
||||||
(home-page
|
(build-system emacs-build-system)
|
||||||
"https://github.com/idris-hackers/idris-mode")
|
(propagated-inputs
|
||||||
(synopsis "Major mode for editing Idris code")
|
`(("emacs-prop-menu" ,emacs-prop-menu)))
|
||||||
(description
|
(home-page
|
||||||
"This is an Emacs mode for editing Idris code. It requires the latest
|
"https://github.com/idris-hackers/idris-mode")
|
||||||
|
(synopsis "Major mode for editing Idris code")
|
||||||
|
(description
|
||||||
|
"This is an Emacs mode for editing Idris code. It requires the latest
|
||||||
version of Idris, and some features may rely on the latest Git version of
|
version of Idris, and some features may rely on the latest Git version of
|
||||||
Idris.")
|
Idris.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-browse-at-remote
|
(define-public emacs-browse-at-remote
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue