gnu: Add emacs-helm-linux-disks.

* gnu/packages/emacs-xyz.scm (emacs-helm-linux-disks): New variable.
This commit is contained in:
Brian Leung 2019-12-03 22:49:04 -08:00
parent 6165fb240b
commit 3c88b673a4
No known key found for this signature in database
GPG key ID: 3ADC75F013D678F9

View file

@ -20369,3 +20369,28 @@ (define-public emacs-isearch-dabbrev
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+))))