nixpkgs/pkgs/tools/compression/zsync/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

19 lines
493 B
Nix

{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 = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}