From fe69c97b2e228571a58fe87aec453ace52c70748 Mon Sep 17 00:00:00 2001 From: Ryan Desfosses Date: Mon, 7 Dec 2020 18:26:46 -0500 Subject: [PATCH 2/2] gnu: Add emacs-burly * gnu/packages/emacs-xyz.scm (emacs-burly): New variable. --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 77d314e5f3..e207dfcbe3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25749,3 +25749,30 @@ s-expression.") "map.el provides map-manipulation functions that work on alists, hash-table and arrays. All functions are prefixed with \"map-\".") (license license:gpl3+))) + +(define-public emacs-burly + (package + (name "emacs-burly") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alphapapa/burly.el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vaikknjzmhpszyi4yxjjkp1ihgmhpbnbx1s5pjy4mnhl1ibi33b")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-map" ,emacs-map))) + (home-page + "https://github.com/alphapapa/burly.el") + (synopsis + "Save and restore frame/window configurations with buffers") + (description + "This package provides tools to save and restore frame and window +configurations in Emacs, including buffers that may not be live +anymore. In this way, it's like a lightweight \"workspace\" manager, +allowing you to easily restore one or more frames, including their +windows, the windows' layout, and their buffers.") + (license license:gpl3+))) -- 2.29.2