mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
45 lines
887 B
Nix
45 lines
887 B
Nix
{
|
|
lib,
|
|
buildPecl,
|
|
fetchFromGitHub,
|
|
libcouchbase,
|
|
zlib,
|
|
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;
|
|
};
|
|
}
|