2009-03-22 13:34:30 +01:00
|
|
|
{ stdenv, fetchurl } :
|
|
|
|
|
2012-06-10 12:47:16 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-21 12:38:44 +02:00
|
|
|
name = "pv-1.3.4";
|
2009-03-22 13:34:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-10 20:01:37 +02:00
|
|
|
url = "http://www.ivarch.com/programs/sources/${name}.tar.bz2";
|
2012-08-21 12:38:44 +02:00
|
|
|
sha256 = "114b730pghgg4gv9d798817n3am88p2b0xgdavch1vhklzh33c16";
|
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";
|
|
|
|
license = "free";
|
2011-04-23 22:58:15 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-03-22 13:34:30 +01:00
|
|
|
};
|
|
|
|
}
|