mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add emacs-disk-usage.
* gnu/packages/emacs-xyz.scm (emacs-disk-usage): New variable.
This commit is contained in:
parent
84e5806461
commit
33756922bb
1 changed files with 21 additions and 0 deletions
|
@ -13137,3 +13137,24 @@ (define-public emacs-redshank
|
||||||
dialects, too. Redshank's code transformations aim to be expression-based (as
|
dialects, too. Redshank's code transformations aim to be expression-based (as
|
||||||
opposed to character-based).")
|
opposed to character-based).")
|
||||||
(license license:gpl1+))))
|
(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+)))
|
||||||
|
|
Loading…
Reference in a new issue