mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
15 lines
437 B
Nix
15 lines
437 B
Nix
{ buildPecl, lib, samba, pkg-config }:
|
|
buildPecl {
|
|
pname = "smbclient";
|
|
version = "1.0.6";
|
|
sha256 = "sha256-ZsQzdDt6NLRWBsA75om9zkxSvB6zBsvvPhXJZrX/KNc=";
|
|
|
|
# TODO: remove this when upstream merges a fix - https://github.com/eduardok/libsmbclient-php/pull/66
|
|
LIBSMBCLIENT_INCDIR = "${samba.dev}/include/samba-4.0";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ samba ];
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
}
|