35 lines
886 B
Nix
35 lines
886 B
Nix
{ lib, buildPecl, fetchFromGitHub, writeText, libcouchbase, zlib, php, substituteAll }:
|
|
let
|
|
pname = "couchbase";
|
|
version = "3.2.1";
|
|
in
|
|
buildPecl {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "couchbase";
|
|
repo = "php-couchbase";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Ti1jo1do0xiY/FAfyG/YI/TTcgFTMWy8cuhorDodUko=";
|
|
};
|
|
|
|
configureFlags = [ "--with-couchbase" ];
|
|
|
|
buildInputs = [ libcouchbase zlib ];
|
|
internalDeps = lib.optionals (lib.versionOlder php.version "8.0") [ php.extensions.json ];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./libcouchbase.patch;
|
|
inherit libcouchbase;
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|