Commit ff64cb72 authored by zowoq's avatar zowoq
Browse files
parent 2e30e228
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -5,24 +5,22 @@

buildGoModule rec {
  pname = "amass";
  version = "3.10.1";
  version = "3.10.3";

  src = fetchFromGitHub {
    owner = "OWASP";
    repo = "Amass";
    rev = "v${version}";
    sha256 = "1djkryx8bz2rg0iqqb30jb122ydiyli2i9xsvcdmd42c47hxg46y";
    sha256 = "1vjplwjv0vwwxdpbky7i6dz3phl7yfcbr8fwrbsb47bmj0ldkapc";
  };

  vendorSha256 = "0c3hyvy8s470zvrv49fx0iil59z0xq10dw4vnr55qgbm2k2pay6w";

  doCheck = false;

  outputs = [ "out" "wordlists" ];

  postInstall = ''
    mkdir -p $wordlists
    cp -R $src/examples/wordlists/*.txt $wordlists
    cp -R examples/wordlists/*.txt $wordlists
    gzip $wordlists/*.txt
  '';