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 sha256 = "1wjslvfy76szf0mgg2i9y9q30858xyjn6v2acc24zal76d1m778b";
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}