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