2021-03-09 03:18:52 +00:00
|
|
|
{ buildPecl, lib, samba, pkg-config }:
|
2021-02-13 14:23:35 +00:00
|
|
|
buildPecl {
|
|
|
|
pname = "smbclient";
|
2021-02-16 17:04:54 +00:00
|
|
|
version = "1.0.5";
|
|
|
|
sha256 = "sha256-cNvTa1qzYrlhuX4oNehXt+XKqmqfonyomW/usQdQQO0=";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
# TODO: remove this when upstream merges a fix - https://github.com/eduardok/libsmbclient-php/pull/66
|
2021-03-09 03:18:52 +00:00
|
|
|
LIBSMBCLIENT_INCDIR = "${samba.dev}/include/samba-4.0";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ samba ];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|