nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 19 lines 495 B view raw
1{ buildPecl, lib, pcre2, php }: 2 3buildPecl { 4 pname = "ds"; 5 6 version = "1.4.0"; 7 sha256 = "1vwk5d27zd746767l8cvbcdr8r70v74vw0im38mlw1g85mc31fd9"; 8 9 buildInputs = [ pcre2 ]; 10 11 internalDeps = lib.optionals (lib.versionOlder php.version "8.0") [ php.extensions.json ]; 12 13 meta = with lib; { 14 description = "An extension providing efficient data structures for PHP"; 15 license = licenses.mit; 16 homepage = "https://github.com/php-ds/ext-ds"; 17 maintainers = teams.php.members; 18 }; 19}