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

Merge pull request #202573 from r-ryantm/auto-update/chaos

chaos: 0.3.0 -> 0.4.0
parents 9a5dc3a7 e83efab6
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@

buildGoModule rec {
  pname = "chaos";
  version = "0.3.0";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = "projectdiscovery";
    repo = "chaos-client";
    rev = "v${version}";
    sha256 = "sha256-1bmKIBbsZHNzwFZ0iPshXclCTcQMzU7zRs5MjMhTFYU=";
    rev = "refs/tags/v${version}";
    hash = "sha256-NA78zMge9AsfqO1px1FWCDKmWy1a0h8dtTotpgLazh4=";
  };

  vendorSha256 = "sha256-2QOdqX4JX9A/i1+qqemVq47PQfqDnxkj0EQMzK8k8/E=";
  vendorHash = "sha256-KkT/mgU1BOwJcjxOBMCMq0hyxZAyoh25bi+s3ka6TOg=";

  subPackages = [
    "cmd/chaos/"
@@ -23,6 +23,7 @@ buildGoModule rec {
  meta = with lib; {
    description = "Tool to communicate with Chaos DNS API";
    homepage = "https://github.com/projectdiscovery/chaos-client";
    changelog = "https://github.com/projectdiscovery/chaos-client/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };