diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-12-31 17:48:24 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-12-31 17:48:24 +0100 |
commit | e5939e5027178e811dc05c3a753efec0c19fb1ae (patch) | |
tree | 3ccff4d66c163a97925927d2445a46aedbbb933d /gnu/packages | |
parent | eff366b469218a0ad01cb40dcf64807e4f9cc4b8 (diff) | |
download | guix-e5939e5027178e811dc05c3a753efec0c19fb1ae.tar guix-e5939e5027178e811dc05c3a753efec0c19fb1ae.tar.gz |
gnu: Add emacs-frame-purpose.
* gnu/packages/emacs.scm (emacs-frame-purpose): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 35d59fe8f1..fce19083ba 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -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+))) |