Adding zsync
svn path=/nixpkgs/trunk/; revision=22158
This commit is contained in:
parent
056ff2705a
commit
6c4cb05613
18
pkgs/tools/compression/zsync/default.nix
Normal file
18
pkgs/tools/compression/zsync/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
@ -1942,6 +1942,9 @@ let
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zsync = import ../tools/compression/zsync {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
### SHELLS
|
### SHELLS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user