From 1e8b77890ca77000fcb8bf09ca6fbcf9756811cf Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 3 Aug 2020 09:57:19 -0400 Subject: [PATCH] gnu: Add emacs-treemacs-projectile --- 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 b377583698..2c5652436e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24389,3 +24389,30 @@ maildir to count unread and total mails.") (description "A helm command for looking up unicode characters by name.") (license #f))) + +(define-public emacs-treemacs-projectile + (package + (name "emacs-treemacs-projectile") + (version "20200530.2129") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/treemacs-projectile-" + version + ".el")) + (sha256 + (base32 + "0llai57mzwfps9153xmdgmx616yvh2ilfh8fkcsxkq0zpizq2lfq")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-projectile" ,emacs-projectile) + ("emacs-treemacs" ,emacs-treemacs))) + (home-page + "https://github.com/Alexander-Miller/treemacs") + (synopsis "Projectile integration for treemacs") + (description + "Projectile integration for treemacs +") + (license license:gpl3+))) +