gnu: emacs-polymode: Update to 0.1.5.
* gnu/packages/emacs.scm (emacs-polymode): Update to 0.1.5.
This commit is contained in:
parent
bc84fc4717
commit
56dc27d62f
1 changed files with 26 additions and 29 deletions
|
@ -7924,21 +7924,18 @@ contexts.
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-polymode
|
(define-public emacs-polymode
|
||||||
;; There hasn't been a proper release.
|
|
||||||
(let ((commit "0340f5e7e55235832e59673f027cc79a23cbdcd6")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "emacs-polymode")
|
(name "emacs-polymode")
|
||||||
(version (string-append "1.0-" revision "." (string-take commit 7)))
|
(version "0.1.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/vspinu/polymode.git")
|
(url "https://github.com/vspinu/polymode.git")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"057cybkq3cy07n5s332k071sjiky3mziy003lza4rh75mgqkwhmh"))))
|
"0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:include (cons* "^modes/.*\\.el$" %default-include)
|
`(#:include (cons* "^modes/.*\\.el$" %default-include)
|
||||||
|
@ -7956,7 +7953,7 @@ for multiple major modes inside a single Emacs buffer. It is lightweight,
|
||||||
object oriented and highly extensible. Creating a new polymode typically
|
object oriented and highly extensible. Creating a new polymode typically
|
||||||
takes only a few lines of code. Polymode also provides extensible facilities
|
takes only a few lines of code. Polymode also provides extensible facilities
|
||||||
for external literate programming tools for exporting, weaving and tangling.")
|
for external literate programming tools for exporting, weaving and tangling.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public eless
|
(define-public eless
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue