nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 586 B view raw
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 = { 17 changelog = "https://pecl.php.net/package-info.php?package=ssh2&version=${version}"; 18 description = "PHP bindings for the libssh2 library"; 19 license = lib.licenses.php301; 20 homepage = "https://github.com/php/pecl-networking-ssh2"; 21 maintainers = [ lib.maintainers.ostrolucky ]; 22 teams = [ lib.teams.php ]; 23 }; 24}