2021-02-27 10:29:20 +00:00
|
|
|
{ buildPecl, lib, samba, pkg-config }:
|
2021-02-01 02:01:37 +00:00
|
|
|
buildPecl {
|
|
|
|
pname = "smbclient";
|
2021-03-09 04:22:41 +00:00
|
|
|
version = "1.0.6";
|
|
|
|
sha256 = "sha256-ZsQzdDt6NLRWBsA75om9zkxSvB6zBsvvPhXJZrX/KNc=";
|
2021-02-01 02:01:37 +00:00
|
|
|
|
|
|
|
# TODO: remove this when upstream merges a fix - https://github.com/eduardok/libsmbclient-php/pull/66
|
2021-02-27 10:29:20 +00:00
|
|
|
LIBSMBCLIENT_INCDIR = "${samba.dev}/include/samba-4.0";
|
2021-02-01 02:01:37 +00:00
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ samba ];
|
2021-02-01 02:01:37 +00:00
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|