2009-03-22 13:34:30 +01:00
|
|
|
{ stdenv, fetchurl } :
|
|
|
|
|
2012-06-10 12:47:16 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pv-1.3.1";
|
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-06-10 12:47:16 +02:00
|
|
|
sha256 = "1fwvdj663g3jf3rcxi788pv1l7s86sxna78xi2nl5qimng05y8jl";
|
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
|
|
|
};
|
|
|
|
}
|