Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
120 lines
3.4 KiB
Nix
120 lines
3.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
dpkg,
|
|
writeShellScript,
|
|
curl,
|
|
jq,
|
|
common-updater-scripts,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "blackfire";
|
|
version = "2.29.1";
|
|
|
|
src =
|
|
passthru.sources.${stdenv.hostPlatform.system}
|
|
or (throw "Unsupported platform for blackfire: ${stdenv.hostPlatform.system}");
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
dpkg
|
|
];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
if ${lib.boolToString stdenv.hostPlatform.isLinux}
|
|
then
|
|
dpkg-deb -x $src $out
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr
|
|
|
|
# Fix ExecStart path and replace deprecated directory creation method,
|
|
# use dynamic user.
|
|
substituteInPlace "$out/lib/systemd/system/blackfire-agent.service" \
|
|
--replace-fail '/usr/' "$out/" \
|
|
--replace-fail 'ExecStartPre=/bin/mkdir -p /var/run/blackfire' 'RuntimeDirectory=blackfire' \
|
|
--replace-fail 'ExecStartPre=/bin/chown blackfire: /var/run/blackfire' "" \
|
|
--replace-fail 'User=blackfire' 'DynamicUser=yes' \
|
|
--replace-fail 'PermissionsStartOnly=true' ""
|
|
|
|
# Modernize socket path.
|
|
substituteInPlace "$out/etc/blackfire/agent" \
|
|
--replace-fail '/var/run' '/run'
|
|
else
|
|
mkdir $out
|
|
|
|
tar -zxvf $src
|
|
|
|
mv etc $out
|
|
mv usr/* $out
|
|
fi
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
sources = {
|
|
"x86_64-linux" = fetchurl {
|
|
url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_amd64.deb";
|
|
sha256 = "n4jG21FgJbRtxhQSxXNKNFJHPqb9CmQFMd2P3+vnHVE=";
|
|
};
|
|
"i686-linux" = fetchurl {
|
|
url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_i386.deb";
|
|
sha256 = "eX8kMQM9ofssQ9USft69ZzMV/pl1CV5EnUMgxOLuIcA=";
|
|
};
|
|
"aarch64-linux" = fetchurl {
|
|
url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_arm64.deb";
|
|
sha256 = "LCqGWc/KJHa5YA1Ex35qI/wVbe1leBwPeG6SUlxrpvY=";
|
|
};
|
|
"aarch64-darwin" = fetchurl {
|
|
url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_arm64.pkg.tar.gz";
|
|
sha256 = "RlTCB0lARb94dwDnDh9L6QYMZXTD/v5Ae756RETias0=";
|
|
};
|
|
"x86_64-darwin" = fetchurl {
|
|
url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_amd64.pkg.tar.gz";
|
|
sha256 = "PGfBHkKOSd4uRKWW95MwyFRD7SWQzck9g6Jk/mWC384=";
|
|
};
|
|
};
|
|
|
|
updateScript = writeShellScript "update-blackfire" ''
|
|
set -o errexit
|
|
export PATH="${
|
|
lib.makeBinPath [
|
|
curl
|
|
jq
|
|
common-updater-scripts
|
|
]
|
|
}"
|
|
NEW_VERSION=$(curl -s https://blackfire.io/api/v1/releases | jq .cli --raw-output)
|
|
|
|
if [[ "${version}" = "$NEW_VERSION" ]]; then
|
|
echo "The new version same as the old version."
|
|
exit 0
|
|
fi
|
|
|
|
for platform in ${lib.escapeShellArgs meta.platforms}; do
|
|
update-source-version "blackfire" "$NEW_VERSION" --ignore-same-version --source-key="sources.$platform"
|
|
done
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Profiler agent and client";
|
|
homepage = "https://blackfire.io/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = [ ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"i686-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
};
|
|
}
|