summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-12-08 17:07:08 +0100
committerJan Tojnar <jtojnar@gmail.com>2021-12-08 18:14:01 +0100
commit52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0 (patch)
tree56238db2cd79da3151d9fca816385249f3079ca9
parenta73696f9efa64d2be0bf5be2505ec29d6ae0b0c7 (diff)
downloadnixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar.gz
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar.bz2
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar.lz
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar.xz
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.tar.zst
nixpkgs-52a2f435b1f33995d5bf4ae63ed6cf6fe149a6c0.zip
php74Extensions.blackfire: 1.70.0 -> 1.71.0
Add PHP 8.1 support.
-rw-r--r--pkgs/development/tools/misc/blackfire/php-probe.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/blackfire/php-probe.nix b/pkgs/development/tools/misc/blackfire/php-probe.nix
index 5872741d1a8..31ea03a2f86 100644
--- a/pkgs/development/tools/misc/blackfire/php-probe.nix
+++ b/pkgs/development/tools/misc/blackfire/php-probe.nix
@@ -15,14 +15,15 @@ let
     "7.3" = "blackfire-20180731";
     "7.4" = "blackfire-20190902";
     "8.0" = "blackfire-20200930";
+    "8.1" = "blackfire-20210902";
   }.${lib.versions.majorMinor php.version} or (throw "Unsupported PHP version.");
 in stdenv.mkDerivation rec {
   pname = "php-blackfire";
-  version = "1.70.0";
+  version = "1.71.0";
 
   src = fetchurl {
     url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire-php/blackfire-php_${version}_amd64.deb";
-    sha256 = "BOdVZCLwMQwVHFgmigXrWZhqZFP+1aWkeq9r24609nI=";
+    sha256 = "8LsYkzNy98qQ9niXrRCkL47Ouyd33ZICnSXx29WIWl4=";
   };
 
   nativeBuildInputs = [