summary refs log tree commit diff
path: root/pkgs/tools/compression/zsync/default.nix
blob: a657234e577c6ef6a14b36ee4ca7ae2b878cd845 (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.1";

  src = fetchurl {
    url = "http://zsync.moria.org.uk/download/${name}.tar.bz2";
    sha256 = "13rbq2m2d4c4qqzadr1cfzrryqxvjgafr8cmask9w2acc0zpv7v1";
  };

  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;
  };
}