oam-tools: init at 0.1.2

Analysis and management tools for an Open Asset Model database

https://github.com/owasp-amass/oam-tools
This commit is contained in:
Fabian Affolter 2024-01-28 18:15:25 +01:00
parent f36cf57e73
commit 939db8e337

View File

@ -0,0 +1,30 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "oam-tools";
version = "0.1.2";
src = fetchFromGitHub {
owner = "owasp-amass";
repo = "oam-tools";
rev = "refs/tags/v${version}";
hash = "sha256-vt4V8em8Iaz3BVKIqlcAv+VIpJtD58xb3QrkIr4tYuU=";
};
vendorHash = "sha256-yFKYZlA06yE48Wiz0cKgD57JEREwYyYkLM1NZPV8+Xc=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Analysis and management tools for an Open Asset Model database";
homepage = "https://github.com/owasp-amass/oam-tools";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}