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