amass: enable on darwin

This commit is contained in:
Mario Rodas 2020-03-18 09:31:01 -05:00
parent 92f08e07af
commit 692b890004
2 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,7 @@
{ buildGoModule
, fetchFromGitHub
, lib
, stdenv
, Security
}:
buildGoModule rec {
@ -18,13 +19,15 @@ buildGoModule rec {
outputs = [ "out" "wordlists" ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
postInstall = ''
mkdir -p $wordlists
cp -R $src/examples/wordlists/*.txt $wordlists
gzip $wordlists/*.txt
'';
meta = with lib; {
meta = with stdenv.lib; {
description = "In-Depth DNS Enumeration and Network Mapping";
longDescription = ''
The OWASP Amass tool suite obtains subdomain names by scraping data

View file

@ -563,7 +563,9 @@ in
acme-client = callPackage ../tools/networking/acme-client { inherit (darwin) apple_sdk; };
amass = callPackage ../tools/networking/amass { };
amass = callPackage ../tools/networking/amass {
inherit (darwin.apple_sdk.frameworks) Security;
};
afew = callPackage ../applications/networking/mailreaders/afew { };