spytrap-adb: init at 0.3.3 (#362940)

This commit is contained in:
Martin Weinelt
2024-12-30 13:16:42 +01:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
+6
View File
@@ -12221,6 +12221,12 @@
githubId = 1903418;
name = "Kovacsics Robert";
};
kpcyrd = {
email = "git@rxv.cc";
github = "kpcyrd";
githubId = 7763184;
name = "kpcyrd";
};
kquick = {
email = "quick@sparq.org";
github = "kquick";
+32
View File
@@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
rustPlatform,
android-tools,
}:
rustPlatform.buildRustPackage rec {
pname = "spytrap-adb";
version = "0.3.3";
src = fetchFromGitHub {
owner = "spytrap-org";
repo = "spytrap-adb";
tag = "v${version}";
hash = "sha256-CL+MxSzHpOq2MXmsaa9sipQZ06Kkzy4r1eFjUrPSj1E=";
};
cargoHash = "sha256-Utg3ds0nGAUjBfuEjGfkohkmssKIZT1NiH9hiFnW4ps=";
env.SPYTRAP_ADB_BINARY = lib.getExe' android-tools "adb";
meta = {
description = "Test a phone for stalkerware using adb and usb debugging to scan for suspicious apps and configuration";
homepage = "https://github.com/spytrap-org/spytrap-adb";
changelog = "https://github.com/spytrap-org/spytrap-adb/releases/tag/v${version}";
mainProgram = "spytrap-adb";
license = with lib.licenses; [ gpl3Plus ];
maintainers = with lib.maintainers; [ kpcyrd ];
platforms = lib.platforms.all;
};
}