about summary refs log tree commit diff
path: root/pkgs/development/php-packages/ds/default.nix
blob: 2552a5bee3b6cbd26d67af1e920ebf633a9c45e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildPecl, lib, pcre2, php }:

buildPecl {
  pname = "ds";

  version = "1.4.0";
  sha256 = "1vwk5d27zd746767l8cvbcdr8r70v74vw0im38mlw1g85mc31fd9";

  buildInputs = [ pcre2 ];

  meta = with lib; {
    description = "An extension providing efficient data structures for PHP";
    license = licenses.mit;
    homepage = "https://github.com/php-ds/ext-ds";
    maintainers = teams.php.members;
  };
}