summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRoel Janssen <roel@gnu.org>2016-04-02 21:43:44 +0200
committerEfraim Flashner <efraim@flashner.co.il>2016-04-06 09:16:50 +0300
commit4971d5d0728bcdb79eacf070d6f3b8efb9018924 (patch)
tree788fafc4f90ac13895fda02bfaa6426da055555b /gnu
parent7407f7fef6b82adf89d28a4c7dc1e8ed1614f215 (diff)
gnu: Add progress.
* gnu/packages/admin.scm (progress): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/admin.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9636ee939f0..406aa0eecea 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -100,6 +100,35 @@ usual file attributes can be checked for inconsistencies.")
100 (home-page "http://aide.sourceforge.net/") 100 (home-page "http://aide.sourceforge.net/")
101 (license license:gpl2+))) 101 (license license:gpl2+)))
102 102
103(define-public progress
104 (package
105 (name "progress")
106 (version "0.13")
107 (source (origin
108 (method url-fetch)
109 (uri (string-append "https://github.com/Xfennec/"
110 name "/archive/v" version ".tar.gz"))
111 (sha256
112 (base32 "133iar4vq5vlklydb4cyazjy6slmpbndrws474mg738bd8avc30n"))
113 (file-name (string-append name "-" version ".tar.gz"))))
114 (build-system gnu-build-system)
115 (inputs
116 `(("ncurses" ,ncurses)))
117 (arguments
118 `(#:tests? #f ; There is no test suite.
119 #:make-flags (list "CC=gcc" "LDFLAGS+=-lncurses"
120 (string-append "PREFIX=" (assoc-ref %outputs "out")))
121 #:phases
122 (modify-phases %standard-phases
123 (delete 'configure)))) ; There's no configure phase.
124 (home-page "https://github.com/Xfennec/progress")
125 (synopsis "Program to view the progress of the coreutils commands")
126 (description "A program that looks for coreutils basic commands (cp, mv,
127dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays
128the percentage of copied data. It can also show estimated time and throughput,
129and provides a \"top-like\" mode (monitoring).")
130 (license license:gpl3+)))
131
103(define-public dmd 132(define-public dmd
104 ;; Deprecated. Kept around "just in case." 133 ;; Deprecated. Kept around "just in case."
105 (let ((base-version "0.2") 134 (let ((base-version "0.2")