From 7237eda343973e49920e29c9d4bb08a8f4250cb5 Mon Sep 17 00:00:00 2001 Message-ID: <7237eda343973e49920e29c9d4bb08a8f4250cb5.1719938340.git.public@thanosapollo.org> From: Thanos Apollo Date: Tue, 2 Jul 2024 19:27:22 +0300 Subject: [PATCH] gnu: Add emacs-eshell-git-prompt. gnu/packages/emacs-xyz.scm (emacs-eshell-git-prompt): New variable. Change-Id: I13234fd0bfc394c5265bb6d6c7882a476f843a62 --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ab6a4cf4ab..a13af2a5a1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -35181,6 +35181,28 @@ (define-public emacs-eshell-did-you-mean commands that bear resemblance to the input command.") (license license:gpl3+))) +(define-public emacs-eshell-git-prompt + (let ((commit "dfcf9cd93add6763e2c46603b0323274d4c22906")) + (package + (name "emacs-eshell-git-prompt") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xuchunyang/eshell-git-prompt") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13b7nr0819pgzyvh0szi0zjyazgpxmsbqcz65cccyhh2pq48zb7j")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-dash)) + (home-page "https://github.com/xuchunyang/eshell-git-prompt") + (synopsis "Themes for Emacs Shell (Eshell) prompt.") + (description "This package provides a variety of themes for Emacs Shell (Eshell) prompt.") + (license license:gpl3+)))) + (define-public emacs-unfill (package (name "emacs-unfill") base-commit: 69089674bb9fb2cc7b3285b73fb7dda7d99a2550 -- 2.45.2