2009-03-22 05:34:30 -07:00
|
|
|
{ stdenv, fetchurl } :
|
|
|
|
|
2012-06-10 03:47:16 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-29 19:00:33 -07:00
|
|
|
name = "pv-1.6.0";
|
2009-03-22 05:34:30 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-10 11:01:37 -07:00
|
|
|
url = "http://www.ivarch.com/programs/sources/${name}.tar.bz2";
|
2015-03-29 19:00:33 -07:00
|
|
|
sha256 = "13gg6r84pkvznpd1l11qw1jw9yna40gkgpni256khyx21m785khf";
|
2009-03-22 05:34:30 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.ivarch.com/programs/pv;
|
|
|
|
description = "Tool for monitoring the progress of data through a pipeline";
|
2014-11-05 16:44:33 -08:00
|
|
|
license = stdenv.lib.licenses.artistic2;
|
2015-06-21 23:25:07 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric jgeerds ];
|
2011-04-23 13:58:15 -07:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-03-22 05:34:30 -07:00
|
|
|
};
|
|
|
|
}
|