nixpkgs/pkgs/tools/compression/zsync/default.nix

19 lines
493 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2013-05-17 23:48:22 +02:00
name = "zsync-0.6.2";
src = fetchurl {
url = "http://zsync.moria.org.uk/download/${name}.tar.bz2";
2013-05-17 23:48:22 +02:00
sha1 = "5e69f084c8adaad6a677b68f7388ae0f9507617a";
};
meta = {
homepage = http://zsync.moria.org.uk/;
description = "File distribution system using the rsync algorithm";
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}