1{
2 buildPecl,
3 lib,
4 libssh2,
5}:
6
7buildPecl rec {
8 version = "1.4.1";
9 pname = "ssh2";
10
11 sha256 = "sha256-e8pbI/cx252O0K6l25uxXaj/EzsPu6lhArguldpNh2Q=";
12
13 buildInputs = [ libssh2 ];
14 configureFlags = [ "--with-ssh2=${libssh2.dev}" ];
15
16 meta = with lib; {
17 changelog = "https://pecl.php.net/package-info.php?package=ssh2&version=${version}";
18 description = "PHP bindings for the libssh2 library";
19 license = licenses.php301;
20 homepage = "https://github.com/php/pecl-networking-ssh2";
21 maintainers = [ maintainers.ostrolucky ];
22 teams = [ teams.php ];
23 };
24}