summary refs log tree commit diff
path: root/pkgs/tools/compression/zsync/default.nix
blob: 3732e5b175654e733b184cb4f91de48590a86f72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "zsync-0.6.2";

  src = fetchurl {
    url = "http://zsync.moria.org.uk/download/${name}.tar.bz2";
    sha1 = "5e69f084c8adaad6a677b68f7388ae0f9507617a";
  };

  meta = {
    homepage = http://zsync.moria.org.uk/;
    description = "File distribution system using the rsync algorithm";
    license = "free";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; all;
  };
}