nixpkgs/pkgs/tools/misc/pv/default.nix
Lluís Batlle i Rossell e7dc9a15ae Adding pipe viewer.
svn path=/nixpkgs/trunk/; revision=14643
2009-03-22 12:34:30 +00:00

17 lines
412 B
Nix

{ stdenv, fetchurl } :
stdenv.mkDerivation {
name = "pv-1.1.4";
src = fetchurl {
url = http://pipeviewer.googlecode.com/files/pv-1.1.4.tar.bz2;
sha256 = "c8613c240ab4297f6ad346f0047138f551a093c603eeb581d5e83091cad3a559";
};
meta = {
homepage = http://www.ivarch.com/programs/pv;
description = "Tool for monitoring the progress of data through a pipeline";
license = "free";
};
}