about summary refs log tree commit diff
path: root/pkgs/development/php-packages/couchbase/default.nix
blob: e638d4c470abd395157383222cf616c37d1ac7a6 (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
{
  lib,
  buildPecl,
  fetchFromGitHub,
  writeText,
  libcouchbase,
  zlib,
  php,
  substituteAll,
}:
let
  pname = "couchbase";
  version = "3.2.2";
in
buildPecl {
  inherit pname version;

  src = fetchFromGitHub {
    owner = "couchbase";
    repo = "php-couchbase";
    rev = "v${version}";
    sha256 = "sha256-JpzLR4NcyShl2VTivj+15iAsTTsZmdMIdZYc3dLCbIA=";
  };

  configureFlags = [ "--with-couchbase" ];

  buildInputs = [
    libcouchbase
    zlib
  ];

  patches = [
    (substituteAll {
      src = ./libcouchbase.patch;
      inherit libcouchbase;
    })
  ];

  meta = with lib; {
    changelog = "https://github.com/couchbase/php-couchbase/releases/tag/v${version}";
    description = "Couchbase Server PHP extension";
    license = licenses.asl20;
    homepage = "https://docs.couchbase.com/php-sdk/current/project-docs/sdk-release-notes.html";
    maintainers = teams.php.members;
  };
}