mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
phpExtensions.protobuf: Move to separate directory
This commit is contained in:
parent
58c1014f5a
commit
63e150560b
19
pkgs/development/php-packages/protobuf/default.nix
Normal file
19
pkgs/development/php-packages/protobuf/default.nix
Normal file
@ -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 { };
|
pinba = callPackage ../development/php-packages/pinba { };
|
||||||
|
|
||||||
protobuf = buildPecl {
|
protobuf = callPackage ../development/php-packages/protobuf { };
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pthreads = let
|
pthreads = let
|
||||||
version = "3.2.0";
|
version = "3.2.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user