Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 23 lines 578 B view raw
1{ 2 buildPecl, 3 lib, 4 libssh2, 5}: 6 7buildPecl rec { 8 version = "1.3.1"; 9 pname = "ssh2"; 10 11 sha256 = "sha256-kJOh+NJNxlg2AnsOI5xQ3o1err+DlrwzMf3TjF1pr9k="; 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 = teams.php.members ++ [ maintainers.ostrolucky ]; 22 }; 23}