summary refs log tree commit diff
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-07-15 07:42:42 +0200
committerGitHub <noreply@github.com>2023-07-15 07:42:42 +0200
commit27f58aceb0d46a1aad9a1ff93e868e4b7d1af615 (patch)
tree2dd44757ced2da5bb2adaaae60a71e22c31f35f6
parente37ac1481c18625a5df0ca55cbddba306c38e2cf (diff)
parent48cbc7ae740e3cfb0a7fbf809048f68cb8805316 (diff)
downloadnixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar.gz
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar.bz2
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar.lz
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar.xz
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.tar.zst
nixpkgs-27f58aceb0d46a1aad9a1ff93e868e4b7d1af615.zip
Merge pull request #243536 from NixOS/php/extension/update-msgpack
phpExtensions.msgpack: 2.2.0RC2 -> 2.2.0
-rw-r--r--pkgs/development/php-packages/msgpack/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/php-packages/msgpack/default.nix b/pkgs/development/php-packages/msgpack/default.nix
index 282fefa9478..c7658c161d6 100644
--- a/pkgs/development/php-packages/msgpack/default.nix
+++ b/pkgs/development/php-packages/msgpack/default.nix
@@ -1,16 +1,16 @@
 { buildPecl, lib }:
 
 buildPecl rec {
-  version = "2.2.0RC2";
+  version = "2.2.0";
   pname = "msgpack";
 
-  sha256 = "sha256-bVV043knbk7rionXqB70RKa1zlJ5K/Nw0oTXZllmJOg=";
+  sha256 = "sha256-gqoeQExf9U7EHSogEwXNZZTtFKdSnpEZ+nykV+S70So=";
 
-  meta = with lib; {
+  meta = {
     changelog = "https://pecl.php.net/package-info.php?package=msgpack&version=${version}";
     description = "PHP extension for interfacing with MessagePack";
-    license = licenses.bsd3;
     homepage = "https://github.com/msgpack/msgpack-php";
-    maintainers = teams.php.members ++ [ maintainers.ostrolucky ];
+    license = lib.licenses.bsd3;
+    maintainers = lib.teams.php.members ++ [ lib.maintainers.ostrolucky ];
   };
 }