aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/pv.scm
blob: db6c3dd6691a69871c96ff356143286f345b3454 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Claes Wallin <claes.wallin@greatsinodevelopment.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages pv)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public pv
  (package
    (name "pv")
    (version "1.6.6")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "https://www.ivarch.com/programs/sources/pv-"
                          version ".tar.bz2"))
      (sha256
       (base32
        "1wbk14xh9rfypiwyy68ssl8dliyji30ly70qki1y2xx3ywszk3k0"))))
    (build-system gnu-build-system)
    (home-page "https://www.ivarch.com/programs/pv.shtml")
    (synopsis "Pipeline progress indicator")
    (description
     "pv (Pipe Viewer) is a terminal-based tool for monitoring the progress
of data through a pipeline.  It can be inserted into any normal pipeline
between two processes to give a visual indication of how quickly data is
passing through, how long it has taken, how near to completion it is, and an
estimate of how long it will be until completion.")
    (license artistic2.0)))
8b5b7c347f'>patchelf: Use 'https' for source uri....Efraim Flashner 2018-03-19patchelf: Use 'https' for source uri....Efraim Flashner 2018-03-19gnu: patchelf: Update argument phase....Efraim Flashner 2018-03-19gnu: patchelf: Use 'target-arm32?' for armhf-linux case....Efraim Flashner 2018-03-19gnu: python-paramiko: Update to 2.1.5....Leo Famulari 2018-03-19gnu: perl-net-ssleay: Update to 1.85....Tobias Geerinckx-Rice 2018-03-19gnu: perl-http-message: Update to 6.15....Tobias Geerinckx-Rice 2018-03-19gnu: r-minimal, r: Update to 3.4.4....Tobias Geerinckx-Rice 2018-03-19gnu: python-pynacl: Update to 1.2.0....Leo Famulari 2018-03-19gnu: pigx: Update to 0.0.2....Ricardo Wurmus 2018-03-19gnu: r-rcas: Use ghc-pandoc-citeproc-with-pandoc-1....Ricardo Wurmus 2018-03-19gnu: bash-completion: Update to 2.8....Tobias Geerinckx-Rice 2018-03-19gnu: hdparm: Update to 9.55....Tobias Geerinckx-Rice 2018-03-19gnu: libtirpc: Update to 1.0.3....Tobias Geerinckx-Rice 2018-03-19gnu: libtirpc: Always return #t from phases....Tobias Geerinckx-Rice 2018-03-19gnu: perl-file-basedir: Update to 0.08....Tobias Geerinckx-Rice 2018-03-19gnu: enlightenment: Update to 0.22.2....Tobias Geerinckx-Rice 2018-03-19gnu: python-oslo.utils: Update to 3.36.0....Tobias Geerinckx-Rice 2018-03-19gnu: python-oslo.i18n: Update to 3.20.0....Tobias Geerinckx-Rice 2018-03-19gnu: r-withr: Update to 2.1.2....Tobias Geerinckx-Rice 2018-03-19gnu: tilda: Update to 1.4.1....Efraim Flashner 2018-03-19gnu: pigx-chipseq: Update to 0.0.8....Ricardo Wurmus 2018-03-19gnu: pigx-scrnaseq: Use pandoc-1....Ricardo Wurmus 2018-03-19gnu: pigx-bsseq: Use pandoc-1....Ricardo Wurmus 2018-03-19gnu: pigx-chipseq: Use pandoc-1....Ricardo Wurmus 2018-03-19gnu: pigx-rnaseq: Use pandoc-1....Ricardo Wurmus 2018-03-19gnu: Add ghc-pandoc-citeproc-with-pandoc-1....Ricardo Wurmus 2018-03-18gnu: font-dejavu: Return #t from all phases....Mark H Weaver 2018-03-18gnu: qpdf: Return #t from all phases....Mark H Weaver 2018-03-18gnu: guile-gdbm-ffi: Add support for gdbm-1.14....Mark H Weaver 2018-03-18gnu: guile-gdbm-ffi: Use 'invoke'....Mark H Weaver 2018-03-18gnu: cups: Return #t from all phases....Mark H Weaver 2018-03-19Merge branch 'master' into stagingMarius Bakke 2018-03-18git-download: Fix recursive checkouts....Eric Bavier