mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 06:33:42 +00:00
morf: init at 1.0.0
Offensive mobile security tool designed to identify and address sensitive information https://github.com/amrudesh1/morf
This commit is contained in:
parent
9ef587a977
commit
55d1ba40f2
33
pkgs/by-name/mo/morf/package.nix
Normal file
33
pkgs/by-name/mo/morf/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user