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

Merge pull request #210545 from r-ryantm/auto-update/cloudfox

cloudfox: 1.8.1 -> 1.9.0
parents 2c96f3e8 91cd6d3f
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@

buildGoModule rec {
  pname = "cloudfox";
  version = "1.8.1";
  version = "1.9.0";

  src = fetchFromGitHub {
    owner = "BishopFox";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-eWo5l3yFEW7ztyYvN1zGGOhCzkJW7rUqaQ+2BPB7BWY=";
    rev = "refs/tags/v${version}";
    hash = "sha256-HLBW7a2sjA/bs8VJkwQNqM6YPEfa1onMoK89G5Fsb8s=";
  };

  vendorSha256 = "sha256-ATHQUvUBDZh06LtWLAA1UyHU1c4LME0z/FsygQQJQy8=";
  vendorHash = "sha256-xMHlooXuLECQi7co2/WvY0TIoV0S5OgcBklICCFk3ls=";

  # Some tests are failing because of wrong filename/path
  doCheck = false;
@@ -22,6 +22,7 @@ buildGoModule rec {
  meta = with lib; {
    description = "Tool for situational awareness of cloud penetration tests";
    homepage = "https://github.com/BishopFox/cloudfox";
    changelog = "https://github.com/BishopFox/cloudfox/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };