at 18.09-beta 18 lines 537 B view raw
1{ stdenv, fetchurl } : 2 3stdenv.mkDerivation rec { 4 name = "pv-1.6.6"; 5 6 src = fetchurl { 7 url = "https://www.ivarch.com/programs/sources/${name}.tar.bz2"; 8 sha256 = "1wbk14xh9rfypiwyy68ssl8dliyji30ly70qki1y2xx3ywszk3k0"; 9 }; 10 11 meta = { 12 homepage = http://www.ivarch.com/programs/pv; 13 description = "Tool for monitoring the progress of data through a pipeline"; 14 license = stdenv.lib.licenses.artistic2; 15 maintainers = with stdenv.lib.maintainers; [ jgeerds ]; 16 platforms = with stdenv.lib.platforms; all; 17 }; 18}