8d68955f99
So it can be automatically updated with `nix-update`
34 lines
880 B
Nix
34 lines
880 B
Nix
{ 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;
|
|
};
|
|
}
|