007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
19 lines
532 B
Nix
19 lines
532 B
Nix
{ stdenv, fetchurl } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pv-1.5.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.ivarch.com/programs/sources/${name}.tar.bz2";
|
|
sha256 = "15srxzyssr8l25bl3rws476nx3fl58bdlh55gyv8cc3hpdhm0ly8";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.ivarch.com/programs/pv;
|
|
description = "Tool for monitoring the progress of data through a pipeline";
|
|
license = stdenv.lib.licenses.artistic2;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|