2009-03-22 13:34:30 +01:00
|
|
|
{ stdenv, fetchurl } :
|
|
|
|
|
2012-06-10 12:47:16 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-07-17 18:08:01 +02:00
|
|
|
name = "pv-1.6.6";
|
2009-03-22 13:34:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.ivarch.com/programs/sources/${name}.tar.bz2";
|
2017-07-17 18:08:01 +02:00
|
|
|
sha256 = "1wbk14xh9rfypiwyy68ssl8dliyji30ly70qki1y2xx3ywszk3k0";
|
2009-03-22 13:34:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.ivarch.com/programs/pv;
|
|
|
|
description = "Tool for monitoring the progress of data through a pipeline";
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.artistic2;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ jgeerds ];
|
2011-04-23 22:58:15 +02:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-03-22 13:34:30 +01:00
|
|
|
};
|
|
|
|
}
|