diff options
author | Brian Leung <brian@debian> | 2019-12-03 22:35:06 -0800 |
---|---|---|
committer | Brian Leung <brian@debian> | 2019-12-07 22:16:34 -0800 |
commit | 20820be9c8c3ad82a6f2cf8c6ef1b1e50e550b90 (patch) | |
tree | ef7d916b1bb99a7ee40a81bd2a02a7dbd5eecfca | |
parent | 7e93817dfb021ab0bf881bacc5e028e2becbc6da (diff) | |
download | patches-20820be9c8c3ad82a6f2cf8c6ef1b1e50e550b90.tar patches-20820be9c8c3ad82a6f2cf8c6ef1b1e50e550b90.tar.gz |
gnu: Add emacs-helm-lacarte.
* gnu/packages/emacs-xyz.scm (emacs-helm-lacarte): New variable.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7ad9220fec..8fbc6fde63 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20294,3 +20294,30 @@ interface.") can specify how popup-displaying functions occupy the screen.") (home-page "https://github.com/wasamasa/shackle") (license license:gpl3+)))) + +(define-public emacs-helm-lacarte + (let ((commit "40a6c449720be521435b6b1da7911af3a0b9dca0") + (revision "1")) + (package + (name "emacs-helm-lacarte") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-helm/helm-lacarte.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dkfd3lap2v7b4nckzv8v7hczmzwzhbl75haqkra107ln91ldbwc")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm) + ("emacs-lacarte" ,emacs-lacarte))) + (synopsis "Helm interface to @code{lacarte.el}") + (description "This package provides a Helm interface to +@code{lacarte.el}, a package that displays mode-specific commands as menu +items.") + (home-page "https://github.com/emacs-helm/helm-lacarte") + (license license:gpl3+)))) |