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
|
|
|
|
2021-06-08 10:50:05 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "PHP wrapper for libsmbclient";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
homepage = "https://github.com/eduardok/libsmbclient-php";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
2021-02-01 02:01:37 +00:00
|
|
|
}
|