Files
nixpkgs/pkgs/by-name/ag/agi/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

84 lines
1.8 KiB
Nix

{
lib,
stdenvNoCC,
fetchzip,
autoPatchelfHook,
makeWrapper,
makeDesktopItem,
copyDesktopItems,
wrapGAppsHook3,
gobject-introspection,
gdk-pixbuf,
jre,
android-tools,
}:
stdenvNoCC.mkDerivation rec {
pname = "agi";
version = "3.3.1";
src = fetchzip {
url = "https://github.com/google/agi/releases/download/${version}/agi-${version}-linux.zip";
sha256 = "sha256-Yawl6InBYSWNw3clHyGAeC2PVfXEzWmbd6vcYrqAPO0=";
};
nativeBuildInputs = [
wrapGAppsHook3
gdk-pixbuf
gobject-introspection
autoPatchelfHook
copyDesktopItems
makeWrapper
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ./{agi,gapis,gapir,gapit,device-info} $out/bin
cp -r lib $out
for i in 16 32 48 64 96 128 256 512 1024; do
install -D ${src}/icon.png $out/share/icons/hicolor/''${i}x$i/apps/agi.png
done
runHook postInstall
'';
dontWrapGApps = true;
preFixup = ''
wrapProgram $out/bin/agi \
--add-flags "--vm ${jre}/bin/java" \
--add-flags "--adb ${android-tools}/bin/adb" \
--add-flags "--jar $out/lib/gapic.jar" \
"''${gappsWrapperArgs[@]-}"
'';
desktopItems = lib.toList (makeDesktopItem {
name = "agi";
desktopName = "Android GPU Inspector";
exec = "agi";
icon = "agi";
categories = [
"Development"
"Debugger"
"Graphics"
"3DGraphics"
];
});
meta = {
description = "Android GPU Inspector";
homepage = "https://gpuinspector.dev";
changelog = "https://github.com/google/agi/releases/tag/v${version}";
platforms = [ "x86_64-linux" ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kashw2 ];
sourceProvenance = with lib.sourceTypes; [
binaryBytecode
binaryNativeCode
];
};
}