gnu: Add emacs-frame-purpose.

* gnu/packages/emacs.scm (emacs-frame-purpose): New variable.
master
Nicolas Goaziou 2018-12-31 17:48:24 +01:00
parent eff366b469
commit e5939e5027
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -12912,3 +12912,27 @@ Dedukti files.")
(description "This package provides a frontend for Flycheck to perform
syntax checking on dedukti files.")
(license license:cecill-b))))
(define-public emacs-frame-purpose
(package
(name "emacs-frame-purpose")
(version "1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alphapapa/frame-purpose.el.git")
(commit version)))
(sha256
(base32
"0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(inputs
`(("dash" ,emacs-dash)))
(synopsis "Purpose-specific frames for Emacs")
(description "@code{frame-purpose} makes it easy to open purpose-specific
frames that only show certain buffers, e.g. by buffers major mode, their
filename or directory, etc, with custom frame/X-window titles, icons, and
other frame parameters.")
(home-page "https://github.com/alphapapa/frame-purpose.el")
(license license:gpl3+)))