-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
php82Extensions.tideways: init at 5.13.0
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ stdenvNoCC | ||
, lib | ||
, fetchurl | ||
, autoPatchelfHook | ||
, php | ||
, writeShellApplication | ||
, curl | ||
, gnugrep | ||
, common-updater-scripts | ||
}: | ||
|
||
let | ||
soFile = { | ||
"8.0" = "tideways-php-8.0.so"; | ||
"8.1" = "tideways-php-8.1.so"; | ||
"8.2" = "tideways-php-8.2.so"; | ||
"8.3" = "tideways-php-8.3.so"; | ||
}.${lib.versions.majorMinor php.version} or (throw "Unsupported PHP version."); | ||
in | ||
stdenvNoCC.mkDerivation (finalAttrs: { | ||
pname = "tideways-php"; | ||
extensionName = "tideways"; | ||
version = "5.13.0"; | ||
|
||
src = finalAttrs.passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported platform for tideways-php: ${stdenvNoCC.hostPlatform.system}"); | ||
|
||
nativeBuildInputs = lib.optionals stdenvNoCC.isLinux [ | ||
autoPatchelfHook | ||
]; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
install -D ${soFile} $out/lib/php/extensions/tideways.so | ||
runHook postInstall | ||
''; | ||
|
||
passthru = { | ||
sources = { | ||
"x86_64-linux" = fetchurl { | ||
url = "https://s3-eu-west-1.amazonaws.com/tideways/extension/${finalAttrs.version}/tideways-php-${finalAttrs.version}-x86_64.tar.gz"; | ||
hash = "sha256-HiH7EjAOqHIYaIRlp/cemhU+QX9Q66ZX8RpX1qcctZ0="; | ||
}; | ||
"aarch64-linux" = fetchurl { | ||
url = "https://s3-eu-west-1.amazonaws.com/tideways/extension/${finalAttrs.version}/tideways-php-${finalAttrs.version}-arm64.tar.gz"; | ||
hash = "sha256-kntNr8KMrOBK2ZZT/EMTR7MCuRt3rJAqhpt5B0m5qVM="; | ||
}; | ||
"aarch64-darwin" = fetchurl { | ||
url = "https://s3-eu-west-1.amazonaws.com/tideways/extension/${finalAttrs.version}/tideways-php-${finalAttrs.version}-macos-arm.tar.gz"; | ||
hash = "sha256-zNVBTXKwCRLKmDlEUUUpP7feB/n2fMevEuKZrgdyAkw="; | ||
}; | ||
}; | ||
|
||
updateScript = "${ | ||
writeShellApplication { | ||
name = "update-tideways-probe"; | ||
runtimeInputs = [ | ||
curl | ||
gnugrep | ||
common-updater-scripts | ||
]; | ||
text = '' | ||
NEW_VERSION=$(curl --fail -L https://tideways.com/profiler/downloads | grep -E 'https://tideways.s3.amazonaws.com/extension/[0-9]+\.[0-9]+\.[0-9]+/tideways-php-[0-9]+\.[0-9]+\.[0-9]+-x86_64.tar.gz' | grep -oP 'extension/\K[0-9]+\.[0-9]+\.[0-9]+') | ||
if [[ "${finalAttrs.version}" = "$NEW_VERSION" ]]; then | ||
echo "The new version same as the old version." | ||
exit 0 | ||
fi | ||
for platform in ${lib.escapeShellArgs finalAttrs.meta.platforms}; do | ||
update-source-version "php82Extensions.tideways" "$NEW_VERSION" --ignore-same-version --source-key="sources.$platform" | ||
done | ||
''; | ||
} | ||
}/bin/update-tideways-probe"; | ||
}; | ||
|
||
meta = with lib; { | ||
description = "Tideways PHP Probe"; | ||
homepage = "https://tideways.com/"; | ||
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; | ||
license = licenses.unfree; | ||
maintainers = with maintainers; [ shyim ]; | ||
platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters