linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / zchunk / default.nix
blob2037d815a81b380266a5e2b8d56fdf4eded6eee6
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , argp-standalone
5 , curl
6 , meson
7 , ninja
8 , pkg-config
9 , zstd
12 stdenv.mkDerivation rec {
13   pname = "zchunk";
14   version = "1.1.9";
16   outputs = [ "out" "lib" "dev" ];
18   src = fetchFromGitHub {
19     owner = "zchunk";
20     repo = pname;
21     rev = version;
22     hash = "sha256-MqnHtqOjLl6R5GZ4f2UX1iLoO9FUT2IfZlSN58wW8JA=";
23   };
25   nativeBuildInputs = [
26     meson
27     ninja
28     pkg-config
29   ];
31   buildInputs = [
32     curl
33     zstd
34   ] ++ lib.optional stdenv.isDarwin argp-standalone;
36   meta = with lib; {
37     homepage = "https://github.com/zchunk/zchunk";
38     description = "File format designed for highly efficient deltas while maintaining good compression";
39     longDescription = ''
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.
46     '';
47     license = licenses.bsd2;
48     maintainers = with maintainers; [ AndersonTorres ];
49     platforms = platforms.unix;
50   };