29 lines
793 B
Nix
29 lines
793 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGhidraExtension,
|
|
}:
|
|
let
|
|
version = "3.0.2";
|
|
in
|
|
buildGhidraExtension {
|
|
pname = "findcrypt";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "antoniovazquezblanco";
|
|
repo = "GhidraFindcrypt";
|
|
rev = "v${version}";
|
|
hash = "sha256-SNmhn/X+POp6dRaB9etZ8GvpKf/5+mPg3E0HUQTthIY=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Ghidra analysis plugin to locate cryptographic constants";
|
|
homepage = "https://github.com/antoniovazquezblanco/GhidraFindcrypt";
|
|
downloadPage = "https://github.com/antoniovazquezblanco/GhidraFindcrypt/releases/tag/v${version}";
|
|
changelog = "https://github.com/antoniovazquezblanco/GhidraFindcrypt/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.BonusPlay ];
|
|
};
|
|
}
|