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