mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-08 20:30:05 -05:00
gnu: Add emacs-window-purpose.
* gnu/packages/emacs-xyz.scm (emacs-window-purpose): New variable.
This commit is contained in:
parent
51c06d10cf
commit
3da8b44bfc
1 changed files with 46 additions and 0 deletions
|
@ -7703,6 +7703,52 @@ (define-public emacs-windsize
|
||||||
possible, and falls back to moving the left or top border otherwise.")
|
possible, and falls back to moving the left or top border otherwise.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-window-purpose
|
||||||
|
(let ((commit "f6421966761ad911fe8861aba2b110c5dd60d1ea")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-window-purpose")
|
||||||
|
(version (git-version "1.7" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bmag/emacs-purpose.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1p0y5gnrw7q65py2wjdf1hrdpiw5c2zbgvfbfmb13257jq5mga38"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-let-alist" ,emacs-let-alist)
|
||||||
|
("emacs-imenu-list" ,emacs-imenu-list)))
|
||||||
|
(arguments
|
||||||
|
'(#:include
|
||||||
|
'("^[^/]+.el$"
|
||||||
|
"^[^/]+.el.in$"
|
||||||
|
"^dir$"
|
||||||
|
"^[^/]+.info$"
|
||||||
|
"^[^/]+.texi$"
|
||||||
|
"^[^/]+.texinfo$"
|
||||||
|
"^doc/dir$"
|
||||||
|
"^doc/[^/]+.info$"
|
||||||
|
"^doc/[^/]+.texi$"
|
||||||
|
"^doc/[^/]+.texinfo$"
|
||||||
|
"^layouts$")
|
||||||
|
#:exclude
|
||||||
|
'("^.dir-locals.el$"
|
||||||
|
"^test.el$"
|
||||||
|
"^tests.el$"
|
||||||
|
"^[^/]+-test.el$"
|
||||||
|
"^[^/]+-tests.el$")))
|
||||||
|
(home-page "https://github.com/bmag/emacs-purpose")
|
||||||
|
(synopsis "Purpose-based window management for Emacs")
|
||||||
|
(description "Purpose is a package that introduces the concept of a
|
||||||
|
\"purpose\" for windows and buffers, and then helps you maintain a robust
|
||||||
|
window layout easily.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-iedit
|
(define-public emacs-iedit
|
||||||
;; Last release version was in 2016.
|
;; Last release version was in 2016.
|
||||||
(let ((commit "e2c100cdd67b7d82835d281ac2cd1bf4f374bc8f")
|
(let ((commit "e2c100cdd67b7d82835d281ac2cd1bf4f374bc8f")
|
||||||
|
|
Loading…
Reference in a new issue