gnu: cvs-fast-export: Update to 1.56.
[jackhill/guix/guix.git] / gnu / packages / ncdu.scm
CommitLineData
4f3a10d5 1;;; GNU Guix --- Functional package management for GNU
66ab28bb 2;;; Copyright © 2014 John Darrington <jmd@gnu.org>
aa777340 3;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
4f3a10d5
JD
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages ncdu)
21 #:use-module (gnu packages)
22 #:use-module (gnu packages ncurses)
23 #:use-module (guix licenses)
24 #:use-module (guix packages)
25 #:use-module (guix download)
26 #:use-module (guix build-system gnu))
27
28(define-public ncdu
29 (package
b7610f23 30 (name "ncdu")
57e0b9e8 31 (version "1.15.1")
b7610f23
EF
32 (source (origin
33 (method url-fetch)
fb29e737 34 (uri (string-append "https://dev.yorhel.nl/download/ncdu-"
b7610f23
EF
35 version ".tar.gz"))
36 (sha256
37 (base32
57e0b9e8 38 "1c1zxalm5asyhn4p1hd51h7khw17515gbqmvdz63kc8xpx6xqbdh"))))
b7610f23
EF
39 (build-system gnu-build-system)
40 (inputs `(("ncurses" ,ncurses)))
e75d8234
TGR
41 (synopsis "Ncurses-based disk usage analyzer")
42 (description
43 "Ncdu is a disk usage analyzer with an ncurses interface, aimed to be
e881752c 44run on a remote server where you don't have an entire graphical setup, but have
e75d8234 45to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
4f3a10d5
JD
46use, and should be able to run in any minimal POSIX-like environment with
47ncurses installed.")
b7610f23 48 (license (x11-style
fb29e737 49 (string-append "https://g.blicky.net/ncdu.git/plain/COPYING?id=v"
b7610f23 50 version)))
fb29e737 51 (home-page "https://dev.yorhel.nl/ncdu")))