lol
at 15.09-beta 18 lines 542 B view raw
1{ stdenv, fetchurl } : 2 3stdenv.mkDerivation rec { 4 name = "pv-1.6.0"; 5 6 src = fetchurl { 7 url = "http://www.ivarch.com/programs/sources/${name}.tar.bz2"; 8 sha256 = "13gg6r84pkvznpd1l11qw1jw9yna40gkgpni256khyx21m785khf"; 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; [ viric jgeerds ]; 16 platforms = with stdenv.lib.platforms; all; 17 }; 18}