summary refs log tree commit diff
path: root/pkgs/development/libraries/zchunk/default.nix
blob: a0cb85ed71abb7a21c2fa133b127bc88525620d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ stdenv
, fetchFromGitHub
, fetchpatch
, pkgconfig
, meson
, ninja
, zstd
, curl
, argp-standalone
}:

stdenv.mkDerivation rec {
  pname = "zchunk";
  version = "1.1.8";

  outputs = [ "out" "lib" "dev" ];

  src = fetchFromGitHub {
    owner = "zchunk";
    repo = pname;
    rev = version;
    sha256 = "0q1jafxh5nqgn2w5ciljkh8h46xma0qia8a5rj9m0pxixcacqj6q";
  };

  nativeBuildInputs = [
    meson
    ninja
    pkgconfig
  ];

  buildInputs = [
    zstd
    curl
  ] ++ stdenv.lib.optional stdenv.isDarwin argp-standalone;

  # Darwin needs a patch for argp-standalone usage and differing endian.h location on macOS
  # https://github.com/zchunk/zchunk/pull/35
  patches = [
  (fetchpatch {
    name = "darwin-support.patch";
    url = "https://github.com/zchunk/zchunk/commit/f7db2ac0a95028a7f82ecb89862426bf53a69232.patch";
    sha256 = "0cm84gyii4ly6nsmagk15g9kbfa13rw395nqk3fdcwm0dpixlkh4";
  })
];

  meta = with stdenv.lib; {
    description = "File format designed for highly efficient deltas while maintaining good compression";
    homepage = "https://github.com/zchunk/zchunk";
    license = licenses.bsd2;
    maintainers = with maintainers; [];
    platforms = platforms.unix;
  };
}