12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
20 hash = "sha256-wmbnkxJHFyqntULxzXF16lt+TfwywLdZamQXvcfSFVM=";
32 ] ++ lib.optional stdenv.isDarwin argp-standalone;
34 outputs = [ "out" "lib" "dev" ];
37 homepage = "https://github.com/zchunk/zchunk";
38 description = "File format designed for highly efficient deltas while maintaining good compression";
40 zchunk is a compressed file format that splits the file into independent
41 chunks. This allows you to only download changed chunks when downloading a
42 new version of the file, and also makes zchunk files efficient over rsync.
44 zchunk files are protected with strong checksums to verify that the file
45 you downloaded is, in fact, the file you wanted.
47 license = licenses.bsd2;
48 maintainers = with maintainers; [ AndersonTorres ];
49 platforms = platforms.unix;