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