diff options
author | Brian Leung <brian@debian> | 2019-12-03 22:49:04 -0800 |
---|---|---|
committer | Brian Leung <brian@debian> | 2019-12-07 22:16:35 -0800 |
commit | 3c88b673a4faae6a79a796d61d51b889dceb0217 (patch) | |
tree | f05ae4e08969f8cbf81c4c33ce00b9e665ffbac2 /gnu | |
parent | 6165fb240bde1a66b4ca7cb56f6b13f0c7a567d5 (diff) |
gnu: Add emacs-helm-linux-disks.
* gnu/packages/emacs-xyz.scm (emacs-helm-linux-disks): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bf82cf4f3c..59c89ee5a5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20369,3 +20369,28 @@ by @code{zsh} as well as @code{eldoc} support.") within @code{isearch-mode}.") (home-page "https://github.com/Dewdrops/isearch-dabbrev") (license license:gpl3+)))) + +(define-public emacs-helm-linux-disks + (let ((commit "2cdc8116a08534289eb0dc76461d0f93a0bdf231") + (revision "1")) + (package + (name "emacs-helm-linux-disks") + (version (git-version "0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Akirak/helm-linux-disks.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1limw82zd8jz3mhh9rqlmhj4cjhfgybs9argfjid1an3vpyhc85i")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm))) + (synopsis "Mount/unmount volumes in Linux via Helm") + (description "This package provides a Helm interface to run operations +on removable volumes in Linux.") + (home-page "https://github.com/Akirak/helm-linux-disks") + (license license:gpl3+)))) |