at 16.09-beta 18 lines 493 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 name = "zsync-0.6.2"; 5 6 src = fetchurl { 7 url = "http://zsync.moria.org.uk/download/${name}.tar.bz2"; 8 sha1 = "5e69f084c8adaad6a677b68f7388ae0f9507617a"; 9 }; 10 11 meta = { 12 homepage = http://zsync.moria.org.uk/; 13 description = "File distribution system using the rsync algorithm"; 14 license = stdenv.lib.licenses.free; 15 maintainers = with stdenv.lib.maintainers; [viric]; 16 platforms = with stdenv.lib.platforms; all; 17 }; 18}