morf: init at 1.0.0 (#360202)

This commit is contained in:
Fabian Affolter 2024-11-30 13:30:14 +01:00 committed by GitHub
commit 4e480bb11d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "morf";
version = "1.0.0";
src = fetchFromGitHub {
owner = "amrudesh1";
repo = "morf";
rev = "refs/tags/v${version}";
hash = "sha256-3PJ+YtKSH6HHAXBSHO8iMP2HFiuW1RQ0N8iUjQD7NBw=";
};
vendorHash = "sha256-tK58UGCI7CuJsFSM7htRQT98tzunAOXyYAxhCkdTJdU=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "Offensive mobile security tool designed to identify and address sensitive information";
homepage = "https://github.com/amrudesh1/morf";
changelog = "https://github.com/amrudesh1/morf/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "morf";
};
}