From cc64956eec6276da19e95149c3b25a88425b483d Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 3 Aug 2020 09:58:36 -0400 Subject: [PATCH] gnu: Add emacs-treemacs-persp Signed-off-by: Collin J. Doering --- 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 ced1a709bd..27d3349d71 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24471,3 +24471,30 @@ not catch, nameley the committing and (un)staging of files. ") (license license:gpl3+))) +(define-public emacs-treemacs-persp + (package + (name "emacs-treemacs-persp") + (version "20200530.2129") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/treemacs-persp-" + version + ".el")) + (sha256 + (base32 + "0w9da9c40r54bmcw6nb92iq829jr4gwgzgn1m2fvcdl135r4bdpl")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-treemacs" ,emacs-treemacs) + ("emacs-persp-mode" ,emacs-persp-mode) + ("emacs-dash" ,emacs-dash))) + (home-page + "https://github.com/Alexander-Miller/treemacs") + (synopsis "Persp-mode integration for treemacs") + (description + "Integration of persp-mode into treemacs' buffer scoping framework. +") + (license license:gpl3+))) +