gnu: Add emacs-disk-usage.

* gnu/packages/emacs-xyz.scm (emacs-disk-usage): New variable.
master
Pierre Neidhardt 2019-02-19 09:45:08 +01:00
parent 84e5806461
commit 33756922bb
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 21 additions and 0 deletions

View File

@ -13137,3 +13137,24 @@ mostly geared towards Common Lisp, but some are useful for other Lisp
dialects, too. Redshank's code transformations aim to be expression-based (as
opposed to character-based).")
(license license:gpl1+))))
(define-public emacs-disk-usage
(package
(name "emacs-disk-usage")
(version "1.1.0")
(home-page "https://gitlab.com/ambrevar/emacs-disk-usage.git")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1c9jmjn8vf0v4776v79pc5w0labfs4v9aysbv2w9423rg4mangbg"))))
(build-system emacs-build-system)
(synopsis "Sort and browse disk usage listings with Emacs")
(description "Disk Usage is a file system analyzer: it offers a tabulated
view of file listings sorted by size. Directory sizes are computed
recursively. The results are cached for speed.")
(license license:gpl3+)))