Unverified Commit ed30cdc6 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #223002 from r-ryantm/auto-update/katana

katana: 0.0.3 -> 1.0.0
parents c9d051b1 a2cb09e3
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@

buildGoModule rec {
  pname = "katana";
  version = "0.0.3";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "projectdiscovery";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-Ax99pmoxlyUGLN2OdIItTNTnO/fDquvNadNnNG6ElEk=";
    rev = "refs/tags/v${version}";
    hash = "sha256-OSvkQIpZEMav1dh3DDTqFxoFbc6sWOjhslqVJcUS104=";
  };

  vendorHash = "sha256-IJcMIJF2A5DfyBdcIXTbeX72Q/4SAVZ0U3UIQ2H0fEc=";
  vendorHash = "sha256-u/3MMuq2Zab6k+vPQ0iKQf8k9zMV2aIgIsTee0VUQaI=";

  CGO_ENABLED = 0;

@@ -23,6 +23,7 @@ buildGoModule rec {
  meta = with lib; {
    description = "A next-generation crawling and spidering framework";
    homepage = "https://github.com/projectdiscovery/katana";
    changelog = "https://github.com/projectdiscovery/katana/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ dit7ya ];
  };