gnu: emacs-highlight-indentation: Update to 0.7.0-1.d03803f.
* gnu/packages/emacs-xyz.scm (emacs-highlight-indentation): Update to 0.7.0-1.d03803f. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
76c2e51017
commit
aca6091b05
|
@ -5580,28 +5580,35 @@ environments (virtualenv) inside Emacs.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-highlight-indentation
|
(define-public emacs-highlight-indentation
|
||||||
(package
|
;; Last release version is from 2015.
|
||||||
(name "emacs-highlight-indentation")
|
(let ((commit "d03803f2c06749c430443a3d24e039cbafc9c58f")
|
||||||
(version "0.7.0")
|
(revision "1"))
|
||||||
(source (origin
|
(package
|
||||||
(method git-fetch)
|
(name "emacs-highlight-indentation")
|
||||||
(uri (git-reference
|
(version (git-version "0.7.0" revision commit))
|
||||||
(url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
|
(source
|
||||||
(commit (string-append "v" version))))
|
(origin
|
||||||
(file-name (git-file-name name version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
|
||||||
"00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
|
(commit commit)))
|
||||||
(build-system emacs-build-system)
|
(file-name (git-file-name name version))
|
||||||
(home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
|
(sha256
|
||||||
(synopsis "Highlighting indentation for Emacs")
|
(base32
|
||||||
(description "Provides two minor modes to highlight indentation guides in Emacs:
|
"1jq0gf4kcx9hvrw40rnw5c2qynjpjw1vsjbi2i4lqjbsnfnxn4wz"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
|
||||||
|
(synopsis "Highlighting indentation for Emacs")
|
||||||
|
(description "This package provides two minor modes to highlight
|
||||||
|
indentation guides in Emacs:
|
||||||
|
|
||||||
@enumerate
|
@enumerate
|
||||||
@item @code{highlight-indentation-mode}, which displays guidelines
|
@item @code{highlight-indentation-mode}, which displays guidelines
|
||||||
indentation (space indentation only).
|
indentation (space indentation only).
|
||||||
@item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
|
@item @code{highlight-indentation-current-column-mode}, which displays
|
||||||
|
guidelines for the current-point indentation (space indentation only).
|
||||||
@end enumerate")
|
@end enumerate")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-elpy
|
(define-public emacs-elpy
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue