mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: ncdu: Update to 1.11.
* gnu/packages/ncdu.scm (ncdu): Update to 1.11. Signed-off-by: Mathieu Lirzin <mthl@openmailbox.org>
This commit is contained in:
parent
c84940ef81
commit
b7610f23bd
1 changed files with 17 additions and 16 deletions
|
@ -27,22 +27,23 @@ (define-module (gnu packages ncdu)
|
||||||
(define-public ncdu
|
(define-public ncdu
|
||||||
(package
|
(package
|
||||||
(name "ncdu")
|
(name "ncdu")
|
||||||
(version "1.10")
|
(version "1.11")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://dev.yorhel.nl/download/ncdu-"
|
(uri (string-append "http://dev.yorhel.nl/download/ncdu-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
|
"0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
|
||||||
(inputs
|
|
||||||
`(("ncurses" ,ncurses)))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(inputs `(("ncurses" ,ncurses)))
|
||||||
(synopsis "Ncurses based disk usage analyzer")
|
(synopsis "Ncurses based disk usage analyzer")
|
||||||
(description "A disk usage analyzer with an ncurses interface, aimed to be
|
(description "A disk usage analyzer with an ncurses interface, aimed to be
|
||||||
run on a remote server where you don't have an entire graphical setup, but have
|
run on a remote server where you don't have an entire graphical setup, but have
|
||||||
to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
|
to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
|
||||||
use, and should be able to run in any minimal POSIX-like environment with
|
use, and should be able to run in any minimal POSIX-like environment with
|
||||||
ncurses installed.")
|
ncurses installed.")
|
||||||
(license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
|
(license (x11-style
|
||||||
|
(string-append "http://g.blicky.net/ncdu.git/plain/COPYING?id=v"
|
||||||
|
version)))
|
||||||
(home-page "http://dev.yorhel.nl/ncdu")))
|
(home-page "http://dev.yorhel.nl/ncdu")))
|
||||||
|
|
Loading…
Reference in a new issue