phpExtensions.protobuf: Move to separate directory

wip/yesman
Elis Hirwing 4 years ago
parent 58c1014f5a
commit 63e150560b
No known key found for this signature in database
GPG Key ID: D57EFA625C9A925F
  1. 19
      pkgs/development/php-packages/protobuf/default.nix
  2. 18
      pkgs/top-level/php-packages.nix

@ -0,0 +1,19 @@
{ buildPecl, lib, pcre' }:
buildPecl {
pname = "protobuf";
version = "3.11.2";
sha256 = "0bhdykdyk58ywqj940zb7jyvrlgdr6hdb4s8kn79fz3p0i79l9hz";
buildInputs = [ pcre' ];
meta = with lib; {
description = ''
Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
'';
license = licenses.bsd3;
homepage = "https://developers.google.com/protocol-buffers/";
maintainers = teams.php.members;
};
}

@ -126,23 +126,7 @@ in
pinba = callPackage ../development/php-packages/pinba { };
protobuf = buildPecl {
version = "3.11.2";
pname = "protobuf";
sha256 = "0bhdykdyk58ywqj940zb7jyvrlgdr6hdb4s8kn79fz3p0i79l9hz";
buildInputs = with pkgs; [ pcre' ];
meta = with pkgs.lib; {
description = ''
Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
'';
license = licenses.bsd3;
homepage = "https://developers.google.com/protocol-buffers/";
maintainers = teams.php.members;
};
};
protobuf = callPackage ../development/php-packages/protobuf { };
pthreads = let
version = "3.2.0";

Loading…
Cancel
Save